Compare commits
1 Commits
master
...
release/4.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7212d49097 |
@ -1,48 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
dir=${PWD##*/}
|
||||
|
||||
gradle assemble
|
||||
|
||||
# Get the current Git branch
|
||||
branch=$(git rev-parse --abbrev-ref HEAD)
|
||||
|
||||
# Replace any slashes (e.g., in 'feature/' or 'release/') with a hyphen
|
||||
cleaned_branch=$(echo "$branch" | sed 's/\//_/g')
|
||||
|
||||
# Get the short commit hash (first 5 characters)
|
||||
commit_hash=$(git rev-parse --short=5 HEAD)
|
||||
|
||||
# Combine branch and commit hash
|
||||
buildName="${USER}-${cleaned_branch}-${commit_hash}"
|
||||
|
||||
gradle bootBuildImage --publishImage -PbuildbootDockerHostNetwork=true -Pversion=${buildName}
|
||||
|
||||
newImageName="nexus.knecon.com:5001/red/${dir}-server-v1:${buildName}"
|
||||
|
||||
echo "full image name:"
|
||||
echo ${newImageName}
|
||||
echo ""
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
namespace=${1}
|
||||
deployment_name="redaction-report-service-v1"
|
||||
|
||||
echo "deploying to ${namespace}"
|
||||
|
||||
oldImageName=$(rancher kubectl -n ${namespace} get deployment ${deployment_name} -o=jsonpath='{.spec.template.spec.containers[*].image}')
|
||||
|
||||
if [ "${newImageName}" = "${oldImageName}" ]; then
|
||||
echo "Image tag did not change, redeploying..."
|
||||
rancher kubectl rollout restart deployment ${deployment_name} -n ${namespace}
|
||||
else
|
||||
echo "upgrading the image tag..."
|
||||
rancher kubectl set image deployment/${deployment_name} ${deployment_name}=${newImageName} -n ${namespace}
|
||||
fi
|
||||
rancher kubectl rollout status deployment ${deployment_name} -n ${namespace}
|
||||
echo "Built ${deployment_name}:${buildName} and deployed to ${namespace}"
|
||||
@ -19,5 +19,5 @@ public class ReportRedactionEntry {
|
||||
private String value;
|
||||
private String entityDisplayName;
|
||||
private boolean isSkipped;
|
||||
private String entityClosestHeadline;
|
||||
|
||||
}
|
||||
|
||||
@ -19,9 +19,6 @@ public class CellTextChunkingService {
|
||||
}
|
||||
|
||||
int length = value.length();
|
||||
if (length < MAX_CELL_TEXT_LENGTH) {
|
||||
return List.of(value);
|
||||
}
|
||||
int startIndex = 0;
|
||||
|
||||
while (startIndex < length) {
|
||||
|
||||
@ -6,7 +6,6 @@ import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
@ -157,27 +156,19 @@ public class EntityLogConverterService {
|
||||
|
||||
if (pages.isEmpty() || !pages.contains(position.getPageNumber())) {
|
||||
pages.add(position.getPageNumber());
|
||||
|
||||
Optional<EntityLogLegalBasis> optionalEntityLogLegalBasis = legalBasisMappings.stream()
|
||||
.filter(lbm -> lbm.getTechnicalName().equalsIgnoreCase(entry.getLegalBasis()))
|
||||
.findAny();
|
||||
|
||||
EntityLogLegalBasis entityLogLegalBasis = optionalEntityLogLegalBasis.orElse(new EntityLogLegalBasis("", "", "", ""));
|
||||
|
||||
reportEntries.add(new ReportRedactionEntry(position.getPageNumber(),
|
||||
position.x(),
|
||||
position.y(),
|
||||
getSection(entry, position),
|
||||
entityLogLegalBasis.getReason() + " " + entityLogLegalBasis.getDescription(),
|
||||
entityLogLegalBasis.getReason(),
|
||||
checkTextForNull(entry.getLegalBasis()) + " " + getJustificationReason(legalBasisMappings, entry),
|
||||
entry.getLegalBasis(),
|
||||
entry.getParagraphPageIdx(),
|
||||
entityLogLegalBasis.getDescription(),
|
||||
getJustificationReason(legalBasisMappings, entry),
|
||||
checkTextForNull(entry.getTextBefore()) + entry.getValue() + checkTextForNull(entry.getTextAfter()),
|
||||
entry.getValue(),
|
||||
mapOfEntityDisplayName.get(entry.getType())
|
||||
== null ? entry.getType() : mapOfEntityDisplayName.get(entry.getType()),
|
||||
entry.getState() == EntryState.SKIPPED || entry.getState() == EntryState.IGNORED,
|
||||
entry.getClosestHeadline()));
|
||||
entry.getState() == EntryState.SKIPPED || entry.getState() == EntryState.IGNORED));
|
||||
}
|
||||
}
|
||||
});
|
||||
@ -197,6 +188,16 @@ public class EntityLogConverterService {
|
||||
}
|
||||
|
||||
|
||||
private static String getJustificationReason(List<EntityLogLegalBasis> legalBasisMappings, EntityLogEntry entry) {
|
||||
|
||||
return legalBasisMappings.stream()
|
||||
.filter(lbm -> lbm.getReason().equalsIgnoreCase(entry.getLegalBasis()))
|
||||
.findAny()
|
||||
.map(EntityLogLegalBasis::getDescription)
|
||||
.orElse("");
|
||||
}
|
||||
|
||||
|
||||
private static ManualChange getLastManualChange(EntityLogEntry entry) {
|
||||
|
||||
return entry.getManualChanges()
|
||||
|
||||
@ -163,7 +163,6 @@ public class ExcelModelFactory {
|
||||
lastCellIndex += 1;
|
||||
col += 1;
|
||||
sheet.shiftColumns(col, lastCellIndex, 1);
|
||||
actualRow = sheet.getRow(row);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -142,7 +142,8 @@ public class GeneratePlaceholderService {
|
||||
Map<String, String> rssPlaceholders = new HashMap<>();
|
||||
|
||||
if (!rssResponse.getFiles().isEmpty()) {
|
||||
for (Map.Entry<String, SCMComponent> rssEntry : rssResponse.getFiles().get(0).getResult().entrySet()) {
|
||||
for (Map.Entry<String, SCMComponent> rssEntry : rssResponse.getFiles()
|
||||
.get(0).getResult().entrySet()) {
|
||||
rssPlaceholders.put(COMPONENT_PLACEHOLDER_BASE + rssEntry.getKey() + "}}", rssEntry.getValue().getOriginalValue());
|
||||
}
|
||||
}
|
||||
|
||||
@ -58,8 +58,6 @@ public class PlaceholderService {
|
||||
public static final String FILE_ATTRIBUTES_PLACEHOLDER = "{{file.attributes}}";
|
||||
public static final String INDEX_PLACEHOLDER = "{{index}}";
|
||||
|
||||
public static final String REDACTION_ENTITY_HEADLINE_PLACEHOLDER = "{{redaction.entity.closestHeadline}}";
|
||||
|
||||
public static final DateTimeFormatter FORMAT_DATE_ISO = DateTimeFormatter.ofPattern("yyyy-MM-dd");
|
||||
public static final DateTimeFormatter FORMAT_DATE_GER = DateTimeFormatter.ofPattern("dd.MM.yyyy");
|
||||
public static final DateTimeFormatter FORMAT_DATE_ENG = DateTimeFormatter.ofPattern("MM/dd/yyyy");
|
||||
@ -95,7 +93,7 @@ public class PlaceholderService {
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER,
|
||||
REDACTION_ENTITY_DISPLAY_NAME_PLACEHOLDER,
|
||||
SKIPPED_PLACEHOLDER, REDACTION_ENTITY_HEADLINE_PLACEHOLDER);
|
||||
SKIPPED_PLACEHOLDER);
|
||||
|
||||
private final ReportTemplateClient reportTemplateClient;
|
||||
private final ReportStorageService reportStorageService;
|
||||
|
||||
@ -52,8 +52,14 @@ public class ScmReportService {
|
||||
|
||||
componentLog.getComponentLogEntries()
|
||||
.forEach(componentLogEntry -> {
|
||||
|
||||
if (componentLogEntry.getValues().isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Process each ComponentLogEntryValue
|
||||
addOtherCells(sheet, excelModel, rowIndexCounter, componentIndexMap, componentLogEntry, fileModel);
|
||||
|
||||
});
|
||||
|
||||
autosizeColumns(sheet, rowIndexCounter);
|
||||
@ -87,74 +93,47 @@ public class ScmReportService {
|
||||
|
||||
String componentValue = componentLogEntry.getName().replaceAll("_", " ");
|
||||
|
||||
int componentIndex = componentIndexMap.getOrDefault(componentValue, 0);
|
||||
|
||||
List<FileAttributeModel> fileAttributeModels = excelModel.getFileAttributeColumns();
|
||||
if (componentLogEntry.getValues().isEmpty()) {
|
||||
writeRow(sheet, excelModel, rowIndexCounter, fileModel, "", componentValue, componentIndexMap, fileAttributeModels);
|
||||
return;
|
||||
}
|
||||
|
||||
for (ComponentLogEntryValue componentLogEntryValue : componentLogEntry.getValues()) {
|
||||
|
||||
componentIndex++;
|
||||
componentIndexMap.put(componentValue, componentIndex);
|
||||
|
||||
List<String> textChunks = cellTextChunkingService.process(componentLogEntryValue.getValue());
|
||||
|
||||
for (String chunk : textChunks) {
|
||||
writeRow(sheet, excelModel, rowIndexCounter, fileModel, chunk, componentValue, componentIndexMap, fileAttributeModels);
|
||||
int currentRowIdx = rowIndexCounter.getAndIncrement();
|
||||
Row row = sheet.createRow(currentRowIdx);
|
||||
excelModel.getWrittenRows().add(currentRowIdx);
|
||||
|
||||
Cell fileNameCell = row.createCell(0);
|
||||
fileNameCell.setCellValue(fileModel.getFilename() == null ? "" : fileModel.getFilename());
|
||||
CellUtil.setVerticalAlignment(fileNameCell, VerticalAlignment.TOP);
|
||||
|
||||
Cell componentNameCell = row.createCell(excelModel.getComponentReport().getComponentNameColumn());
|
||||
componentNameCell.setCellValue(componentValue);
|
||||
if (excelModel.getComponentReport().writeComponentValueIndices()) {
|
||||
Cell indexCell = row.createCell(excelModel.getComponentReport().getComponentValueIndexColumn());
|
||||
indexCell.setCellValue(componentIndex);
|
||||
CellUtil.setAlignment(indexCell, HorizontalAlignment.CENTER);
|
||||
CellUtil.setVerticalAlignment(indexCell, VerticalAlignment.TOP);
|
||||
}
|
||||
|
||||
Cell textCell = row.createCell(excelModel.getComponentReport().getComponentValueColumn());
|
||||
textCell.setCellValue(chunk);
|
||||
CellStyle cellStyle = sheet.getWorkbook().createCellStyle();
|
||||
cellStyle.setWrapText(true);
|
||||
textCell.setCellStyle(cellStyle);
|
||||
|
||||
addFileAttribute(row, fileModel, fileAttributeModels);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void writeRow(Sheet sheet,
|
||||
ExcelModel excelModel,
|
||||
AtomicInteger rowIndexCounter,
|
||||
FileModel fileModel,
|
||||
String chunk,
|
||||
String componentValue,
|
||||
Map<String, Integer> componentIndexMap,
|
||||
List<FileAttributeModel> fileAttributeModels) {
|
||||
|
||||
int componentIndex = incrementAndGet(componentValue, componentIndexMap);
|
||||
int currentRowIdx = rowIndexCounter.getAndIncrement();
|
||||
Row row = sheet.createRow(currentRowIdx);
|
||||
excelModel.getWrittenRows().add(currentRowIdx);
|
||||
|
||||
Cell fileNameCell = row.createCell(0);
|
||||
fileNameCell.setCellValue(fileModel.getFilename() == null ? "" : fileModel.getFilename());
|
||||
CellUtil.setVerticalAlignment(fileNameCell, VerticalAlignment.TOP);
|
||||
|
||||
Cell componentNameCell = row.createCell(excelModel.getComponentReport().getComponentNameColumn());
|
||||
componentNameCell.setCellValue(componentValue);
|
||||
if (excelModel.getComponentReport().writeComponentValueIndices()) {
|
||||
Cell indexCell = row.createCell(excelModel.getComponentReport().getComponentValueIndexColumn());
|
||||
indexCell.setCellValue(componentIndex);
|
||||
CellUtil.setAlignment(indexCell, HorizontalAlignment.CENTER);
|
||||
CellUtil.setVerticalAlignment(indexCell, VerticalAlignment.TOP);
|
||||
}
|
||||
|
||||
Cell textCell = row.createCell(excelModel.getComponentReport().getComponentValueColumn());
|
||||
textCell.setCellValue(chunk);
|
||||
CellStyle cellStyle = sheet.getWorkbook().createCellStyle();
|
||||
cellStyle.setWrapText(true);
|
||||
textCell.setCellStyle(cellStyle);
|
||||
|
||||
addFileAttribute(row, fileModel, fileAttributeModels);
|
||||
}
|
||||
|
||||
|
||||
private static int incrementAndGet(String componentValue, Map<String, Integer> componentIndexMap) {
|
||||
|
||||
int componentIndex = componentIndexMap.getOrDefault(componentValue, 0);
|
||||
componentIndex++;
|
||||
componentIndexMap.put(componentValue, componentIndex);
|
||||
return componentIndex;
|
||||
}
|
||||
|
||||
|
||||
private static int increment(Map<String, Integer> componentIndexMap, int componentIndex, String componentValue) {
|
||||
|
||||
|
||||
return componentIndex;
|
||||
}
|
||||
|
||||
private void addFileAttribute(Row row, FileModel fileModel, List<FileAttributeModel> fileAttributeModels) {
|
||||
|
||||
for (FileAttributeModel fileAttributeModel : fileAttributeModels) {
|
||||
|
||||
@ -7,7 +7,6 @@ import static com.iqser.red.service.redaction.report.v1.server.service.Placehold
|
||||
import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_DATE_ISO_PLACEHOLDER;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.FORMAT_TIME_ISO_PLACEHOLDER;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.IUCLID_FUNCTION_PLACEHOLDER;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.REDACTION_ENTITY_HEADLINE_PLACEHOLDER;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.service.PlaceholderService.SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.utils.OsUtils.getTemporaryDirectory;
|
||||
@ -311,7 +310,7 @@ public class RedactionReportIntegrationTest {
|
||||
FileModel fileStatus = FileModel.builder().filename("filename").build();
|
||||
|
||||
EntityLog entityLog = objectMapper.readValue(new ClassPathResource("files/entityLog.json").getInputStream(), EntityLog.class);
|
||||
List<EntityLogLegalBasis> legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMappingIUCLID.json").getInputStream(), new TypeReference<>() {
|
||||
List<EntityLogLegalBasis> legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() {
|
||||
});
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID,
|
||||
FILE_ID,
|
||||
@ -747,7 +746,7 @@ public class RedactionReportIntegrationTest {
|
||||
DOSSIER_NAME_PLACEHOLDER,
|
||||
IUCLID_FUNCTION_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER, REDACTION_ENTITY_HEADLINE_PLACEHOLDER));
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER));
|
||||
defaultPlaceHolder.addAll(dossierAttributes.keySet());
|
||||
defaultPlaceHolder.addAll(fileAttributes.keySet());
|
||||
return new PlaceholderModel(defaultPlaceHolder, imagePlaceholders, dossierAttributes, null, fileAttributes, new HashMap<>());
|
||||
|
||||
@ -89,7 +89,7 @@ public class EntityLogConverterServiceTest {
|
||||
assertEquals(62, reportEntries.size());
|
||||
assertEquals(reportEntries.get(0).getPage(), 1);
|
||||
assertEquals(reportEntries.get(0).getSection(), "[1]: Section: Rule 1/2: Redact CBI");
|
||||
assertEquals(reportEntries.get(0).getJustification(), "Article 39(e)(3) of Regulation (EC) No 178/2002 (Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)");
|
||||
assertEquals(reportEntries.get(0).getJustification(), "Article 39(e)(3) of Regulation (EC) No 178/2002 ");
|
||||
assertEquals(reportEntries.get(0).getJustificationParagraph(), "Article 39(e)(3) of Regulation (EC) No 178/2002");
|
||||
assertFalse(reportEntries.get(0).isSkipped());
|
||||
}
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
filename
|
||||
|
||||
|
||||
Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002) commercial links between a producer or importer and the applicant or the authorisation holder, where applicable
|
||||
Reg (EC) No 1107/2009 Art. 63 (2e)
|
||||
|
||||
relates to: P5 +49 2113 2311 563, P5 +49 2113 2311 560, P5 +81 764770164, P5 +81 6653 44563, P5 Seriknowmobil@co.uk, P5 maximiliamschmitt@arcor.de, P5 maximiliamschmitt@t-online.de, P5 example@mail.com, P5 +27414328992, P5 +274 1432 8990, P5 +274 34223331, P5 +274 1432 8933, P6 +82 122 34188, P6 +82 122 34180, P6 food-industry@korea.com, P6 +275 5678 1234 132, P6 +49 2113 2311 563, P6 +49 2113 2311 560, P6 +81 764770164, P6 +81 6653 44563, P6 Seriknowmobil@co.uk, P6 maximiliamschmitt@arcor.de, P6 maximiliamschmitt@t-online.de, P6 example@mail.com, P6 +27414328992, P6 +274 1432 8990, P6 +274 34223331, P6 +274 1432 8933, P7 +82 122 34188, P7 +82 122 34180, P7 pharma-industry@korea.com
|
||||
|
||||
|
||||
Article 39(e)(3) of Regulation (EC) No 178/2002 (Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)
|
||||
Article 39(e)(3) of Regulation (EC) No 178/2002
|
||||
|
||||
relates to: P1 Logo - non-readable content, P1 Doe J., P2 Michael N., P2 Funnarie B., P2 Feuer A., P3 Desiree, P3 Melanie, P4 library@outlook.com, P4 gordonjcp@msn.com, P4 dinther@comcast.net, P4 kawasaki@me.com, P5 Central Research Industry, P5 Maximiliam Schmitt, P5 +274 1432 8991, P5 493 1223 4592, P5 European Central Institute, P5 Emilia Lockhart, P6 This is a special case, everything between this and the next keyword should be redacted, P6 Central Research Industry, P6 Maximiliam Schmitt, P6 +274 1432 8991, P6 493 1223 4592, P6 European Central Institute, P6 Emilia Lockhart, P7 Dr. Alan Grant, P7 Dr. Alan Grant, P9 Signature - non-readable content, P9 Signature - non-readable content, P9 Müller, P9 Logo - non-readable content
|
||||
@ -0,0 +1,289 @@
|
||||
{
|
||||
"analysisVersion": 1,
|
||||
"analysisNumber": 1,
|
||||
"redactionLogEntry": [
|
||||
{
|
||||
"id": "28562647b117cbee1737768475ae3607",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 143.0472,
|
||||
"y": 727.91
|
||||
},
|
||||
"width": 10.452833,
|
||||
"height": 33.710693,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": "Owner (SYN = ",
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 230,
|
||||
"endOffset": 238,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476409899Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "1f44b16adada98a40be977d224b62d4b",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 546.96716,
|
||||
"y": 72.89051
|
||||
},
|
||||
"width": 10.452818,
|
||||
"height": 33.71469,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 5,
|
||||
"textBefore": "the active substance ",
|
||||
"textAfter": " – 6",
|
||||
"comments": null,
|
||||
"startOffset": 219,
|
||||
"endOffset": 227,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476423585Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "91ef6d1848e433516662408700de5790",
|
||||
"type": "hint_only",
|
||||
"value": "author",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.98039216,
|
||||
0.59607846,
|
||||
0.96862745
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 61.0888,
|
||||
"y": 428.5304
|
||||
},
|
||||
"width": 11.591162,
|
||||
"height": 32.84558,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 5,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 147,
|
||||
"endOffset": 153,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476427502Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "1c2b8863d0348ec57b337ce2712f0847",
|
||||
"type": "hint_only",
|
||||
"value": "author",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.98039216,
|
||||
0.59607846,
|
||||
0.96862745
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 111.60883,
|
||||
"y": 72.89054
|
||||
},
|
||||
"width": 11.591154,
|
||||
"height": 32.80046,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 0,
|
||||
"endOffset": 6,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476432602Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
}
|
||||
],
|
||||
"legalBasis": [
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 18,
|
||||
"dossierDictionaryVersion": 1,
|
||||
"rulesVersion": 1,
|
||||
"legalBasisVersion": 2
|
||||
}
|
||||
@ -0,0 +1,355 @@
|
||||
{
|
||||
"analysisVersion": 1,
|
||||
"analysisNumber": 1,
|
||||
"redactionLogEntry": [
|
||||
{
|
||||
"id": "28562647b117cbee1737768475ae3607",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 143.0472,
|
||||
"y": 727.91
|
||||
},
|
||||
"width": 10.452833,
|
||||
"height": 33.710693,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": "Owner (SYN = ",
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 230,
|
||||
"endOffset": 238,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476409899Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "1f44b16adada98a40be977d224b62d4b",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 546.96716,
|
||||
"y": 72.89051
|
||||
},
|
||||
"width": 10.452818,
|
||||
"height": 33.71469,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 5,
|
||||
"textBefore": "the active substance ",
|
||||
"textAfter": " – 6",
|
||||
"comments": null,
|
||||
"startOffset": 219,
|
||||
"endOffset": 227,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476423585Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "91ef6d1848e433516662408700de5790",
|
||||
"type": "hint_only",
|
||||
"value": "author",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.98039216,
|
||||
0.59607846,
|
||||
0.96862745
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 61.0888,
|
||||
"y": 428.5304
|
||||
},
|
||||
"width": 11.591162,
|
||||
"height": 32.84558,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 5,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 147,
|
||||
"endOffset": 153,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476427502Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "1c2b8863d0348ec57b337ce2712f0847",
|
||||
"type": "hint_only",
|
||||
"value": "author",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.98039216,
|
||||
0.59607846,
|
||||
0.96862745
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 111.60883,
|
||||
"y": 72.89054
|
||||
},
|
||||
"width": 11.591154,
|
||||
"height": 32.80046,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 0,
|
||||
"endOffset": 6,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:51.476432602Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "b1372ac26ef7c9ac846636dc90ddcf05",
|
||||
"type": "manual",
|
||||
"value": "Published",
|
||||
"reason": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"matchedRule": 0,
|
||||
"rectangle": false,
|
||||
"legalBasis": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"imported": false,
|
||||
"redacted": true,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 157.0195,
|
||||
"y": 350.69205
|
||||
},
|
||||
"width": 13.96788,
|
||||
"height": -47.821453,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": "",
|
||||
"textAfter": "",
|
||||
"comments": null,
|
||||
"startOffset": 0,
|
||||
"endOffset": 0,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 2,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-03-20T11:27:09.936Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [
|
||||
{
|
||||
"annotationStatus": "APPROVED",
|
||||
"manualRedactionType": "ADD_LOCALLY",
|
||||
"processedDate": "2023-03-20T11:27:09.944Z",
|
||||
"requestedDate": "2023-03-20T11:27:09.936Z",
|
||||
"userId": "98755882-a216-44e6-92c1-0c191ad134ce",
|
||||
"propertyChanges": {},
|
||||
"processed": true
|
||||
}
|
||||
],
|
||||
"engines": null,
|
||||
"reference": null,
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": true,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": false,
|
||||
"dossierDictionaryEntry": false
|
||||
}
|
||||
],
|
||||
"legalBasis": [
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 18,
|
||||
"dossierDictionaryVersion": 1,
|
||||
"rulesVersion": 1,
|
||||
"legalBasisVersion": 2
|
||||
}
|
||||
@ -0,0 +1,639 @@
|
||||
{
|
||||
"analysisVersion": 1,
|
||||
"analysisNumber": 1,
|
||||
"redactionLogEntry": [
|
||||
{
|
||||
"id": "ac54224bab3fa173a28c1fc943abcb2b",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 143.0472,
|
||||
"y": 727.85
|
||||
},
|
||||
"width": 10.452833,
|
||||
"height": 33.710693,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": "Owner (SYN = ",
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 230,
|
||||
"endOffset": 238,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477812432Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "badbdba336f4d754024bb1f820a61b0a",
|
||||
"type": "CBI_author",
|
||||
"value": "Green R.",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 10,
|
||||
"rectangle": false,
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"redacted": true,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 253.67392,
|
||||
"y": 162.84514
|
||||
},
|
||||
"width": 11.54608,
|
||||
"height": 36.198288,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 6,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 15,
|
||||
"endOffset": 23,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477821319Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"NER",
|
||||
"DICTIONARY",
|
||||
"RULE"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "0cbb552705d3294bf579dcfa97ea6766",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 290.2385,
|
||||
"y": 644.72015
|
||||
},
|
||||
"width": 10.981504,
|
||||
"height": 33.48163,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 9,
|
||||
"textBefore": "providing access to ",
|
||||
"textAfter": " specific know-how",
|
||||
"comments": null,
|
||||
"startOffset": 393,
|
||||
"endOffset": 401,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477826438Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "c688622f3544cd4d9c4aafef2c77f15d",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 237.65378,
|
||||
"y": 302.87067
|
||||
},
|
||||
"width": 11.546049,
|
||||
"height": 37.251373,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 5,
|
||||
"textBefore": "to Document J ",
|
||||
"textAfter": " File No",
|
||||
"comments": null,
|
||||
"startOffset": 102,
|
||||
"endOffset": 110,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477828843Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "8ac1b192ab6ca20375149f01a8ce7334",
|
||||
"type": "CBI_author",
|
||||
"value": "Akkan Z., Botham J.",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 10,
|
||||
"rectangle": false,
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"redacted": true,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 214.67392,
|
||||
"y": 162.85521
|
||||
},
|
||||
"width": 11.546062,
|
||||
"height": 83.2892,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 5,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 15,
|
||||
"endOffset": 34,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477830937Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"RULE"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "a6a7198a8089e8e06107af5f6a2d1e73",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 290.2385,
|
||||
"y": 75.3515
|
||||
},
|
||||
"width": 10.981504,
|
||||
"height": 33.536697,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 9,
|
||||
"textBefore": "2013 ZA1296_10191 *",
|
||||
"textAfter": " requests data",
|
||||
"comments": null,
|
||||
"startOffset": 237,
|
||||
"endOffset": 245,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477833081Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "2a0f1f825a91671322b6c7adef385367",
|
||||
"type": "hint_only",
|
||||
"value": "author",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.98039216,
|
||||
0.59607846,
|
||||
0.96862745
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 111.60883,
|
||||
"y": 162.83318
|
||||
},
|
||||
"width": 11.591154,
|
||||
"height": 32.800476,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 11,
|
||||
"endOffset": 17,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477835365Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "a22c85dd1d9005345e48e1e573745567",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 546.96716,
|
||||
"y": 72.830505
|
||||
},
|
||||
"width": 10.452818,
|
||||
"height": 33.714684,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 9,
|
||||
"textBefore": "the active substance ",
|
||||
"textAfter": " – 6",
|
||||
"comments": null,
|
||||
"startOffset": 196,
|
||||
"endOffset": 204,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477837359Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "181eec8da7dff594abd8181370a4b2b5",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 290.2385,
|
||||
"y": 442.6209
|
||||
},
|
||||
"width": 10.981504,
|
||||
"height": 33.48181,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 9,
|
||||
"textBefore": "information might undermine ",
|
||||
"textAfter": "’s commercial interests",
|
||||
"comments": null,
|
||||
"startOffset": 338,
|
||||
"endOffset": 346,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477839473Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "b907ba9ef5993bd3d12d2098cb03759e",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta",
|
||||
"reason": "Address found for non vertebrate study",
|
||||
"matchedRule": 3,
|
||||
"rectangle": false,
|
||||
"legalBasis": null,
|
||||
"imported": false,
|
||||
"redacted": false,
|
||||
"section": "Text in table",
|
||||
"color": [
|
||||
0.76862746,
|
||||
0.59607846,
|
||||
0.98039216
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 276.65378,
|
||||
"y": 302.87067
|
||||
},
|
||||
"width": 11.54608,
|
||||
"height": 37.251373,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 6,
|
||||
"textBefore": "to Document J ",
|
||||
"textAfter": " File No",
|
||||
"comments": null,
|
||||
"startOffset": 91,
|
||||
"endOffset": 99,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"sourceId": null,
|
||||
"changes": [
|
||||
{
|
||||
"analysisNumber": 1,
|
||||
"type": "ADDED",
|
||||
"dateTime": "2023-02-28T10:05:46.477841627Z"
|
||||
}
|
||||
],
|
||||
"manualChanges": [],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"importedRedactionIntersections": [],
|
||||
"localManualRedaction": false,
|
||||
"manuallyRemoved": false,
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"falsePositive": false,
|
||||
"image": false,
|
||||
"dictionaryEntry": true,
|
||||
"dossierDictionaryEntry": false
|
||||
}
|
||||
],
|
||||
"legalBasis": [
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 18,
|
||||
"dossierDictionaryVersion": 1,
|
||||
"rulesVersion": 1,
|
||||
"legalBasisVersion": 2
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
[
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(1)",
|
||||
"description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.",
|
||||
"reason": "Article 39(e)(1) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,275 @@
|
||||
{
|
||||
"analysisVersion": 1,
|
||||
"redactionLogEntry": [
|
||||
{
|
||||
"id": "c65033cf94d9d0011cbb45184225e2c6",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta Crop Protection AG CH 4002 – Basel Switzerland",
|
||||
"reason": "Address found",
|
||||
"matchedRule": 3,
|
||||
"legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "Table in: ",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 687.38
|
||||
},
|
||||
"width": 120.99826,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 675.86
|
||||
},
|
||||
"width": 69.64087,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 664.34
|
||||
},
|
||||
"width": 48.55905,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 148,
|
||||
"endOffset": 203,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-20T15:30:11.024443Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "dbf366de6f9338b6246a1555058bf652",
|
||||
"type": "CBI_address",
|
||||
"value": "Syngenta Crop Protection AG Schwarzwaldalle 215 P.O. Box CH-4002 Basel Switzerland",
|
||||
"reason": "Address found",
|
||||
"matchedRule": 3,
|
||||
"legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "Table in: ",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 745.34
|
||||
},
|
||||
"width": 120.99826,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 733.82
|
||||
},
|
||||
"width": 86.676025,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 722.3
|
||||
},
|
||||
"width": 37.971527,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 710.9
|
||||
},
|
||||
"width": 62.99005,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 301.27,
|
||||
"y": 699.38
|
||||
},
|
||||
"width": 48.55905,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 17,
|
||||
"endOffset": 99,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-20T15:30:11.024476Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "c0ab0793f4bd54dc02e09606ad58583f",
|
||||
"type": "false_positive",
|
||||
"value": "Field",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"legalBasis": null,
|
||||
"redacted": false,
|
||||
"section": "Table in: ",
|
||||
"color": [
|
||||
1,
|
||||
0.80784315,
|
||||
0.80784315
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 105.14,
|
||||
"y": 405.23
|
||||
},
|
||||
"width": 24.537277,
|
||||
"height": 10.929359,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 868,
|
||||
"endOffset": 873,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-20T15:30:11.024482Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"reference": [],
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
}
|
||||
],
|
||||
"legalBasis": [
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(1)",
|
||||
"description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.",
|
||||
"reason": "Article 39(e)(1) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 24,
|
||||
"dossierDictionaryVersion": 1,
|
||||
"rulesVersion": 1,
|
||||
"legalBasisVersion": 1
|
||||
}
|
||||
@ -0,0 +1,543 @@
|
||||
{
|
||||
"analysisVersion": 1,
|
||||
"redactionLogEntry": [
|
||||
{
|
||||
"id": "c1189b63b3293a2cb315c30feaec3a02",
|
||||
"type": "false_positive",
|
||||
"value": "Not stated",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"legalBasis": null,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
1,
|
||||
0.80784315,
|
||||
0.80784315
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 197.93,
|
||||
"y": 568.67
|
||||
},
|
||||
"width": 45.965927,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 1,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 713,
|
||||
"endOffset": 723,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081665Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "2e9ba259e223dc1205b5c2b6085bec60",
|
||||
"type": "CBI_author",
|
||||
"value": "Cheung",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 1,
|
||||
"legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "Materials and methods:",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 153.5,
|
||||
"y": 403.91
|
||||
},
|
||||
"width": 35.3013,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": "ABR89090 (see above, ",
|
||||
"textAfter": ", 1990 RIP9800436).",
|
||||
"comments": null,
|
||||
"startOffset": 425,
|
||||
"endOffset": 431,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081673Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "4424ae80a70d7b0ce6d39272ca8b7a19",
|
||||
"type": "CBI_author",
|
||||
"value": "Cheung",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 1,
|
||||
"legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "Materials and methods:",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 341.23,
|
||||
"y": 416.51
|
||||
},
|
||||
"width": 35.30124,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": "ABR-89089 (see above, ",
|
||||
"textAfter": ", 1990, RIP9800437)",
|
||||
"comments": null,
|
||||
"startOffset": 374,
|
||||
"endOffset": 380,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081673Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "d5b033c5e84d2c9d5a8eb0478d8acf20",
|
||||
"type": "false_positive",
|
||||
"value": "September",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"legalBasis": null,
|
||||
"redacted": false,
|
||||
"section": "Header",
|
||||
"color": [
|
||||
1,
|
||||
0.80784315,
|
||||
0.80784315
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 459.31998,
|
||||
"y": 795.04
|
||||
},
|
||||
"width": 43.519257,
|
||||
"height": 10.526819,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 4,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 54,
|
||||
"endOffset": 63,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081674Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "e80985688619cc8d4fdff3091a7b397a",
|
||||
"type": "false_positive",
|
||||
"value": "Syngenta",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"legalBasis": null,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
1,
|
||||
0.80784315,
|
||||
0.80784315
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 289.84998,
|
||||
"y": 605.3
|
||||
},
|
||||
"width": 42.112946,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 1,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 630,
|
||||
"endOffset": 638,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081674Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "4745a1125efdc81700e0ab9be95e5c75",
|
||||
"type": "CBI_author",
|
||||
"value": "Rollins R.D.",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 1,
|
||||
"legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.5764706,
|
||||
0.59607846,
|
||||
0.627451
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 409.96426,
|
||||
"y": 618.02
|
||||
},
|
||||
"width": 56.28833,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 1,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": "freezer storage conditions, ",
|
||||
"textAfter": ", 1995, Study",
|
||||
"comments": null,
|
||||
"startOffset": 586,
|
||||
"endOffset": 598,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081674Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"NER",
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": false,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "379492d57d7cf987f7177fb8b31ce0bc",
|
||||
"type": "recommendation_CBI_author",
|
||||
"value": "Guideline",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 1,
|
||||
"legalBasis": "Article 39(e)(1) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "",
|
||||
"color": [
|
||||
0.5529412,
|
||||
0.9411765,
|
||||
0.42352942
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 70.944,
|
||||
"y": 586.82
|
||||
},
|
||||
"width": 46.95952,
|
||||
"height": 10.929359,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 1,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": "No CGA24705/2567, RIP9800438 ",
|
||||
"textAfter": "(s): Not specified",
|
||||
"comments": null,
|
||||
"startOffset": 673,
|
||||
"endOffset": 682,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081675Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": false,
|
||||
"recommendation": true,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "39b497ef7a81c0283a01c0156fb523ab",
|
||||
"type": "false_positive",
|
||||
"value": "August",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"legalBasis": null,
|
||||
"redacted": false,
|
||||
"section": "",
|
||||
"color": [
|
||||
1,
|
||||
0.80784315,
|
||||
0.80784315
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 489.86035,
|
||||
"y": 740.42
|
||||
},
|
||||
"width": 32.82184,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 1,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 90,
|
||||
"endOffset": 96,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081675Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
},
|
||||
{
|
||||
"id": "c0eace8eb34ea01a13a7a55c14dc6e1b",
|
||||
"type": "false_positive",
|
||||
"value": "All",
|
||||
"reason": null,
|
||||
"matchedRule": 0,
|
||||
"legalBasis": null,
|
||||
"redacted": false,
|
||||
"section": "Materials and methods:",
|
||||
"color": [
|
||||
1,
|
||||
0.80784315,
|
||||
0.80784315
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 70.944,
|
||||
"y": 378.57
|
||||
},
|
||||
"width": 15.0980835,
|
||||
"height": 11.017679,
|
||||
"page": 1
|
||||
}
|
||||
],
|
||||
"sectionNumber": 2,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"manualRedactionUserId": null,
|
||||
"textBefore": null,
|
||||
"textAfter": null,
|
||||
"comments": null,
|
||||
"startOffset": 451,
|
||||
"endOffset": 454,
|
||||
"imageHasTransparency": false,
|
||||
"excluded": false,
|
||||
"recategorizationType": null,
|
||||
"legalBasisChangeValue": null,
|
||||
"changes": [
|
||||
{
|
||||
"type": "ADDED",
|
||||
"dateTime": "2021-09-09T08:00:53.081675Z"
|
||||
}
|
||||
],
|
||||
"engines": [
|
||||
"DICTIONARY"
|
||||
],
|
||||
"hint": true,
|
||||
"recommendation": false,
|
||||
"dictionaryEntry": true,
|
||||
"image": false,
|
||||
"dossierDictionaryEntry": false
|
||||
}
|
||||
],
|
||||
"legalBasis": [
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(1)",
|
||||
"description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.",
|
||||
"reason": "Article 39(e)(1) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 28,
|
||||
"dossierDictionaryVersion": 1,
|
||||
"rulesVersion": 1,
|
||||
"legalBasisVersion": 1
|
||||
}
|
||||
@ -10,7 +10,7 @@
|
||||
"value": "Dr. Alan Grant",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "PII.9.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
17,
|
||||
@ -118,7 +118,7 @@
|
||||
"value": "Funnarie B.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -175,7 +175,7 @@
|
||||
"value": "Central Research Industry",
|
||||
"reason": "Found after \"Contact point:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -231,7 +231,7 @@
|
||||
"value": "food-industry@korea.com",
|
||||
"reason": "Found after \"E-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -286,7 +286,7 @@
|
||||
"value": "+274 1432 8991",
|
||||
"reason": "Found between contact keywords",
|
||||
"matchedRule": "PII.6.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -342,7 +342,7 @@
|
||||
"value": "+49 2113 2311 563",
|
||||
"reason": "Found after \"Phone:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -506,7 +506,7 @@
|
||||
"value": "+274 1432 8933",
|
||||
"reason": "Found after \"Phone No.\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -562,7 +562,7 @@
|
||||
"value": "This is a special case, everything between this and the next keyword should be redacted",
|
||||
"reason": "Found between contact keywords",
|
||||
"matchedRule": "PII.6.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -682,7 +682,7 @@
|
||||
"value": "example@mail.com",
|
||||
"reason": "Found after \"E-mail address:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -801,7 +801,7 @@
|
||||
"value": "Maximiliam Schmitt",
|
||||
"reason": "Found between contact keywords",
|
||||
"matchedRule": "PII.6.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -911,7 +911,7 @@
|
||||
"value": "gordonjcp@msn.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -965,7 +965,7 @@
|
||||
"value": "+81 764770164",
|
||||
"reason": "Found after \"Tel.:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1021,7 +1021,7 @@
|
||||
"value": "Melanie",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -1076,7 +1076,7 @@
|
||||
"value": "+274 34223331",
|
||||
"reason": "Found after \"Telephone:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1132,7 +1132,7 @@
|
||||
"value": "+49 2113 2311 560",
|
||||
"reason": "Found after \"Fax:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1262,7 +1262,7 @@
|
||||
"value": "+82 122 34188",
|
||||
"reason": "Found after \"Phone:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1373,7 +1373,7 @@
|
||||
"value": "maximiliamschmitt@arcor.de",
|
||||
"reason": "Found after \"Email:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1429,7 +1429,7 @@
|
||||
"value": "dinther@comcast.net",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1727,7 +1727,7 @@
|
||||
"value": "European Central Institute",
|
||||
"reason": "Found after \"European contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -1857,7 +1857,7 @@
|
||||
"value": "Müller",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
22,
|
||||
@ -1911,7 +1911,7 @@
|
||||
"value": "maximiliamschmitt@arcor.de",
|
||||
"reason": "Found after \"Email:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2021,7 +2021,7 @@
|
||||
"value": "Melanie",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -2075,7 +2075,7 @@
|
||||
"value": "+274 1432 8991",
|
||||
"reason": "Found between contact keywords",
|
||||
"matchedRule": "PII.6.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2513,7 +2513,7 @@
|
||||
"value": "library@outlook.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -2675,7 +2675,7 @@
|
||||
"value": "Desiree",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -2783,7 +2783,7 @@
|
||||
"value": "Michael N.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -3011,7 +3011,7 @@
|
||||
"value": "kawasaki@me.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -3065,7 +3065,7 @@
|
||||
"value": "Central Research Industry",
|
||||
"reason": "Found after \"Contact point:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -3121,7 +3121,7 @@
|
||||
"value": "+81 764770164",
|
||||
"reason": "Found after \"Tel.:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -3231,7 +3231,7 @@
|
||||
"value": "+82 122 34180",
|
||||
"reason": "Found after \"Fax:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
15,
|
||||
@ -3285,7 +3285,7 @@
|
||||
"value": "+275 5678 1234 132",
|
||||
"reason": "Found after \"Tel.:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -3396,7 +3396,7 @@
|
||||
"value": "Maximiliam Schmitt",
|
||||
"reason": "Found between contact keywords",
|
||||
"matchedRule": "PII.6.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -3618,7 +3618,7 @@
|
||||
"value": "+49 2113 2311 560",
|
||||
"reason": "Found after \"Fax:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -3784,7 +3784,7 @@
|
||||
"value": "+274 1432 8933",
|
||||
"reason": "Found after \"Phone No.\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -3840,7 +3840,7 @@
|
||||
"value": "+82 122 34188",
|
||||
"reason": "Found after \"Phone:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
15,
|
||||
@ -3948,7 +3948,7 @@
|
||||
"value": "+82 122 34180",
|
||||
"reason": "Found after \"Fax:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4057,7 +4057,7 @@
|
||||
"value": "+49 2113 2311 563",
|
||||
"reason": "Found after \"Phone:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4176,7 +4176,7 @@
|
||||
"value": "+27414328992",
|
||||
"reason": "Found after \"Telephone number:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4232,7 +4232,7 @@
|
||||
"value": "Doe J.",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -4397,7 +4397,7 @@
|
||||
"value": "European Central Institute",
|
||||
"reason": "Found after \"European contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4516,7 +4516,7 @@
|
||||
"value": "example@mail.com",
|
||||
"reason": "Found after \"E-mail address:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4572,7 +4572,7 @@
|
||||
"value": "Emilia Lockhart",
|
||||
"reason": "Found after \"Alternative contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4628,7 +4628,7 @@
|
||||
"value": "+274 1432 8990",
|
||||
"reason": "Found after \"Fax number:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4684,7 +4684,7 @@
|
||||
"value": "pharma-industry@korea.com",
|
||||
"reason": "Found after \"E-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
15,
|
||||
@ -4738,7 +4738,7 @@
|
||||
"value": "+274 1432 8990",
|
||||
"reason": "Found after \"Fax number:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4794,7 +4794,7 @@
|
||||
"value": "+81 6653 44563",
|
||||
"reason": "Found after \"Tel:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4906,7 +4906,7 @@
|
||||
"value": "+81 6653 44563",
|
||||
"reason": "Found after \"Tel:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4962,7 +4962,7 @@
|
||||
"value": "Feuer A.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -5072,7 +5072,7 @@
|
||||
"value": "Seriknowmobil@co.uk",
|
||||
"reason": "Found after \"E-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5128,7 +5128,7 @@
|
||||
"value": "+274 34223331",
|
||||
"reason": "Found after \"Telephone:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5184,7 +5184,7 @@
|
||||
"value": "+27414328992",
|
||||
"reason": "Found after \"Telephone number:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -5294,7 +5294,7 @@
|
||||
"value": "Dr. Alan Grant",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "PII.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
16,
|
||||
@ -5348,7 +5348,7 @@
|
||||
"value": "maximiliamschmitt@t-online.de",
|
||||
"reason": "Found after \"e-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5404,7 +5404,7 @@
|
||||
"value": "493 1223 4592",
|
||||
"reason": "Found after \"Contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -5460,7 +5460,7 @@
|
||||
"value": "maximiliamschmitt@t-online.de",
|
||||
"reason": "Found after \"e-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -5516,7 +5516,7 @@
|
||||
"value": "493 1223 4592",
|
||||
"reason": "Found after \"Contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5635,7 +5635,7 @@
|
||||
"value": "Seriknowmobil@co.uk",
|
||||
"reason": "Found after \"E-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.1",
|
||||
"legalBasis": "links_producer_applicant",
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2e)",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -5745,7 +5745,7 @@
|
||||
"value": "Desiree",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -5799,7 +5799,7 @@
|
||||
"value": "Emilia Lockhart",
|
||||
"reason": "Found after \"Alternative contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -5855,7 +5855,7 @@
|
||||
"value": "Image:Logo",
|
||||
"reason": "Logo Found",
|
||||
"matchedRule": "ETC.3.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -5907,7 +5907,7 @@
|
||||
"value": "Image:Signature",
|
||||
"reason": "Signature Found",
|
||||
"matchedRule": "ETC.2.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
21,
|
||||
@ -5959,7 +5959,7 @@
|
||||
"value": "Image:Signature",
|
||||
"reason": "Signature Found",
|
||||
"matchedRule": "ETC.2.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
21,
|
||||
@ -6011,7 +6011,7 @@
|
||||
"value": "Image:Logo",
|
||||
"reason": "Logo Found",
|
||||
"matchedRule": "ETC.3.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
22,
|
||||
@ -6060,56 +6060,47 @@
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "personal_data_geolocation_article_39e3"
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "vertebrate_study_personal_data_geolocation_article_39e2"
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "manufacturing_production_process"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "links_producer_applicant"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "commercial_information"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "quantitative_composition"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "specification_impurity"
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "results_production_batches"
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "composition_plant_protection_product"
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 21,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -116,7 +116,7 @@
|
||||
"value": "Melanie",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -221,7 +221,7 @@
|
||||
"value": "Maximiliam Schmitt",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -275,7 +275,7 @@
|
||||
"value": "food-industry@korea.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -328,7 +328,7 @@
|
||||
"value": "gordonjcp@msn.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -380,7 +380,7 @@
|
||||
"value": "Ranya Eikenboom",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -432,7 +432,7 @@
|
||||
"value": "maximiliamschmitt@t-online.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -486,7 +486,7 @@
|
||||
"value": "Siegfried",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -538,7 +538,7 @@
|
||||
"value": "+81 764770164",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -592,7 +592,7 @@
|
||||
"value": "Doe J.",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -724,7 +724,7 @@
|
||||
"value": "+274 1432 8933",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -778,7 +778,7 @@
|
||||
"value": "Xinyi Y. Tao",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -830,7 +830,7 @@
|
||||
"value": "+274 1432 8933",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -884,7 +884,7 @@
|
||||
"value": "+27414328992",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -938,7 +938,7 @@
|
||||
"value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -990,7 +990,7 @@
|
||||
"value": "Desiree",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -1042,7 +1042,7 @@
|
||||
"value": "+274 34223331",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1148,7 +1148,7 @@
|
||||
"value": "CTL/with dictionary entry 1234 with Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -1200,7 +1200,7 @@
|
||||
"value": "+274 1432 8991",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1306,7 +1306,7 @@
|
||||
"value": "+82 122 34180",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -1359,7 +1359,7 @@
|
||||
"value": "David Ksenia",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -1411,7 +1411,7 @@
|
||||
"value": "Schmitt",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -1463,7 +1463,7 @@
|
||||
"value": "Emilia Lockhart",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -1571,7 +1571,7 @@
|
||||
"value": "+82 122 34180",
|
||||
"reason": "Found after \"Fax:\" contact keyword",
|
||||
"matchedRule": "PII.4.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1623,7 +1623,7 @@
|
||||
"value": "maximiliamschmitt@t-online.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1677,7 +1677,7 @@
|
||||
"value": "Seriknowmobil@co.uk",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1731,7 +1731,7 @@
|
||||
"value": "Özgür U. Reyhan",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -1783,7 +1783,7 @@
|
||||
"value": "Central Research Industry",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1837,7 +1837,7 @@
|
||||
"value": "+81 6653 44563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1891,7 +1891,7 @@
|
||||
"value": "+81 6653 44563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2053,7 +2053,7 @@
|
||||
"value": "+274 1432 8990",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2107,7 +2107,7 @@
|
||||
"value": "Central Research Industry",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2215,7 +2215,7 @@
|
||||
"value": "Dr. Alan Grant",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
15,
|
||||
@ -2346,7 +2346,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -2404,7 +2404,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -2462,7 +2462,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -2520,7 +2520,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3334,7 +3334,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3536,7 +3536,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3594,7 +3594,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3652,7 +3652,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3737,7 +3737,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3795,7 +3795,7 @@
|
||||
"value": "CTL with dictionary entry 5678 without Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -3847,7 +3847,7 @@
|
||||
"value": "Riddley Scott",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -3900,7 +3900,7 @@
|
||||
"value": "library@outlook.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -3952,7 +3952,7 @@
|
||||
"value": "Maximiliam Schmitt",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4006,7 +4006,7 @@
|
||||
"value": "example@mail.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4060,7 +4060,7 @@
|
||||
"value": "Jill Valentine",
|
||||
"reason": "Found after \"Contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4112,7 +4112,7 @@
|
||||
"value": "Kong",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4220,7 +4220,7 @@
|
||||
"value": "493 1223 4592",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4382,7 +4382,7 @@
|
||||
"value": "example@mail.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4436,7 +4436,7 @@
|
||||
"value": "+49 2113 2311 563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4544,7 +4544,7 @@
|
||||
"value": "+49 2113 2311 563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4598,7 +4598,7 @@
|
||||
"value": "Emilia Lockhart",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4652,7 +4652,7 @@
|
||||
"value": "Max Mustermann",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -4756,7 +4756,7 @@
|
||||
"value": "maximiliamschmitt@arcor.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4864,7 +4864,7 @@
|
||||
"value": "+274 1432 8991",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4918,7 +4918,7 @@
|
||||
"value": "kawasaki@me.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -4970,7 +4970,7 @@
|
||||
"value": "Seriknowmobil@co.uk",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5024,7 +5024,7 @@
|
||||
"value": "This is a special case, everything between this and the next keyword should be redacted",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5086,7 +5086,7 @@
|
||||
"value": "Feuer A.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -5247,7 +5247,7 @@
|
||||
"value": "+275 5678 1234 132",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5458,7 +5458,7 @@
|
||||
"value": "Sude Halide Nurullah",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -5510,7 +5510,7 @@
|
||||
"value": "Key",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
8,
|
||||
@ -5616,7 +5616,7 @@
|
||||
"value": "Funnarie B.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -5671,7 +5671,7 @@
|
||||
"value": "European Central Institute",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5725,7 +5725,7 @@
|
||||
"value": "+274 1432 8990",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -5779,7 +5779,7 @@
|
||||
"value": "+274 34223331",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5833,7 +5833,7 @@
|
||||
"value": "dinther@comcast.net",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -5885,7 +5885,7 @@
|
||||
"value": "M. Mustermann",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -5989,7 +5989,7 @@
|
||||
"value": "Charalampos Schenk",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -6041,7 +6041,7 @@
|
||||
"value": "BL with dictionary entry 5678 without Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -6093,7 +6093,7 @@
|
||||
"value": "+27414328992",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -6147,7 +6147,7 @@
|
||||
"value": "+82 122 34188",
|
||||
"reason": "Found after \"Phone:\" contact keyword",
|
||||
"matchedRule": "PII.4.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -6251,7 +6251,7 @@
|
||||
"value": "+81 764770164",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -6305,7 +6305,7 @@
|
||||
"value": "+82 122 34188",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -6358,7 +6358,7 @@
|
||||
"value": "Michael N.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -6413,7 +6413,7 @@
|
||||
"value": "Desiree",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -6465,7 +6465,7 @@
|
||||
"value": "493 1223 4592",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -6582,7 +6582,7 @@
|
||||
"value": "BL/with dictionary entry 1234 with Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -6634,7 +6634,7 @@
|
||||
"value": "C. J. Alfred",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -6686,7 +6686,7 @@
|
||||
"value": "+49 2113 2311 560",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -6740,7 +6740,7 @@
|
||||
"value": "B. Rahim",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -6896,7 +6896,7 @@
|
||||
"value": "pharma-industry@korea.com",
|
||||
"reason": "Found after \"E-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -6948,7 +6948,7 @@
|
||||
"value": "maximiliamschmitt@arcor.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -7002,7 +7002,7 @@
|
||||
"value": "+49 2113 2311 560",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -7110,7 +7110,7 @@
|
||||
"value": "Kong",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -7218,7 +7218,7 @@
|
||||
"value": "Melanie",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -7270,7 +7270,7 @@
|
||||
"value": "Doe",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -7374,7 +7374,7 @@
|
||||
"value": "European Central Institute",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -7530,7 +7530,7 @@
|
||||
"value": "Image:Signature",
|
||||
"reason": "Signature Found",
|
||||
"matchedRule": "ETC.2.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
20,
|
||||
@ -7580,7 +7580,7 @@
|
||||
"value": "Image:Signature",
|
||||
"reason": "Signature Found",
|
||||
"matchedRule": "ETC.2.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
20,
|
||||
@ -7680,7 +7680,7 @@
|
||||
"value": "Clarissa’s Donut",
|
||||
"reason": "manual entries are applied by default, created by manual change",
|
||||
"matchedRule": "MAN.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
3,
|
||||
@ -7743,7 +7743,7 @@
|
||||
"value": "Simpson's To",
|
||||
"reason": "manual entries are applied by default, created by manual change",
|
||||
"matchedRule": "MAN.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
3,
|
||||
@ -7803,56 +7803,47 @@
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "personal_data_geolocation_article_39e3"
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "vertebrate_study_personal_data_geolocation_article_39e2"
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "manufacturing_production_process"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "links_producer_applicant"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "commercial_information"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "quantitative_composition"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "specification_impurity"
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "results_production_batches"
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "composition_plant_protection_product"
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 20,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,348 @@
|
||||
{
|
||||
"redactionLogEntry": [
|
||||
{
|
||||
"id": "ba922aabe15e334569dc06b212b3a15b",
|
||||
"type": "address",
|
||||
"value": "regina.dorn@syngenta.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": 6,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1 Identity",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 147.86,
|
||||
"y": 517.43
|
||||
},
|
||||
"width": 122.451065,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 13,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "b841bb2734863a14e95cb15efdf98172",
|
||||
"type": "address",
|
||||
"value": "+41 (61) 323 6358",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": 6,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1 Identity",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 147.86,
|
||||
"y": 542.75
|
||||
},
|
||||
"width": 83.41362,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 13,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "d39269482f83c64453153826d8de0a5f",
|
||||
"type": "address",
|
||||
"value": "Patrick Gardinal",
|
||||
"reason": "Producer was found",
|
||||
"matchedRule": 7,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1.1.2 Producer of the plant protection product",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 148.94,
|
||||
"y": 404.39
|
||||
},
|
||||
"width": 73.40033,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 14,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "9ddda875972c0fbcda02ae551cd0d07a",
|
||||
"type": "address",
|
||||
"value": "+41 (0) 61 323 60 51",
|
||||
"reason": "Producer was found",
|
||||
"matchedRule": 7,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1.1.2 Producer of the plant protection product",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 148.94,
|
||||
"y": 328.53
|
||||
},
|
||||
"width": 94.33217,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 14,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "9e289c70c17cb2b3bf7c96b070d44533",
|
||||
"type": "address",
|
||||
"value": "patrick.gardinal@syngenta.com",
|
||||
"reason": "Producer was found",
|
||||
"matchedRule": 7,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1.1.2 Producer of the plant protection product",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 148.94,
|
||||
"y": 303.21002
|
||||
},
|
||||
"width": 141.26324,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 14,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "10a4893ec30e268c951b8026e0dc3e11",
|
||||
"type": "address",
|
||||
"value": "Syngenta Crop Protection AG",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": 6,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1 Identity",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 147.86,
|
||||
"y": 631.34
|
||||
},
|
||||
"width": 133.3113,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 13,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "86b754bc4e70f45038b465a66c0e927b",
|
||||
"type": "address",
|
||||
"value": "Regina Dorn",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": 6,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1 Identity",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 147.86,
|
||||
"y": 555.47
|
||||
},
|
||||
"width": 57.624176,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 13,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "fd367ab592da09165d1bcd52cfddaf68",
|
||||
"type": "address",
|
||||
"value": "Syngenta Crop Protection AG",
|
||||
"reason": "Producer was found",
|
||||
"matchedRule": 7,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1.1.2 Producer of the plant protection product",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 148.94,
|
||||
"y": 455.03
|
||||
},
|
||||
"width": 133.34088,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 14,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "3ae8841f1e9a6e022af1880aaa2853ef",
|
||||
"type": "address",
|
||||
"value": "Syngenta Crop Protection AG",
|
||||
"reason": "Producer was found",
|
||||
"matchedRule": 7,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1.1.2 Producer of the plant protection product",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 148.94,
|
||||
"y": 391.77
|
||||
},
|
||||
"width": 133.23718,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 14,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "027e744e97c8c1cecb974023f8792055",
|
||||
"type": "address",
|
||||
"value": "+41 (61) 323 6155",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": 6,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1 Identity",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 147.86,
|
||||
"y": 530.15
|
||||
},
|
||||
"width": 83.41362,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 13,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
},
|
||||
{
|
||||
"id": "a022f9ecad5b06f9da7bc2ebdcc97c17",
|
||||
"type": "address",
|
||||
"value": "+41 (0) 61 323 61 55",
|
||||
"reason": "Producer was found",
|
||||
"matchedRule": 7,
|
||||
"legalBasis": "Reg (EC) No 1107/2009 Art. 63 (2g)",
|
||||
"redacted": true,
|
||||
"section": "B.1.1.2 Producer of the plant protection product",
|
||||
"color": [
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
],
|
||||
"positions": [
|
||||
{
|
||||
"topLeft": {
|
||||
"x": 148.94,
|
||||
"y": 315.81
|
||||
},
|
||||
"width": 94.33217,
|
||||
"height": 11.017679,
|
||||
"page": 4
|
||||
}
|
||||
],
|
||||
"sectionNumber": 14,
|
||||
"manual": false,
|
||||
"status": null,
|
||||
"manualRedactionType": null,
|
||||
"hint": false
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 0,
|
||||
"rulesVersion": 0,
|
||||
"filename": null
|
||||
}
|
||||
@ -0,0 +1,47 @@
|
||||
[
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(1)",
|
||||
"description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.",
|
||||
"reason": "Article 39(e)(1) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
]
|
||||
@ -1,50 +1,42 @@
|
||||
[
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "personal_data_geolocation_article_39e3"
|
||||
"name": "1. personal data (incl. geolocation)",
|
||||
"description": "any other personal data except for\n a. the name and address of the applicant;\n b. the names of authors of published or publicly available studies supporting such requests; and the names of all participants and observers in meetings of the Scientific Committee and the Scientific Panels, their working groups and any other ad hoc group meeting on the subject matter.\nand except for personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(1) and Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "manufacturing_production_process"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "links_producer_applicant"
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable;",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "commercial_information"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "quantitative_composition"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "specification_impurity"
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "results_production_batches"
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "composition_plant_protection_product"
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
]
|
||||
|
||||
@ -2,55 +2,46 @@
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "personal_data_geolocation_article_39e3"
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "vertebrate_study_personal_data_geolocation_article_39e2"
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "manufacturing_production_process"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "links_producer_applicant"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "commercial_information"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "quantitative_composition"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "specification_impurity"
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "results_production_batches"
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "composition_plant_protection_product"
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
]
|
||||
]
|
||||
@ -0,0 +1,47 @@
|
||||
[
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
]
|
||||
@ -268,7 +268,7 @@
|
||||
"value": "www.syngenta.com",
|
||||
"reason": "PII (Personal Identification Information) found",
|
||||
"matchedRule": 19,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "",
|
||||
"color": [
|
||||
@ -313,7 +313,7 @@
|
||||
"value": "N Robinson",
|
||||
"reason": "Author found",
|
||||
"matchedRule": 1,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "",
|
||||
"color": [
|
||||
@ -511,7 +511,7 @@
|
||||
"value": "F J Lewis",
|
||||
"reason": "PII (Personal Identification Information) found",
|
||||
"matchedRule": 19,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "",
|
||||
"color": [
|
||||
@ -3157,7 +3157,7 @@
|
||||
"value": "Thomas",
|
||||
"reason": "Published Information found",
|
||||
"matchedRule": 18,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": false,
|
||||
"section": "References",
|
||||
"color": [
|
||||
@ -3301,7 +3301,7 @@
|
||||
"value": "Tummon O J",
|
||||
"reason": "Published Information found",
|
||||
"matchedRule": 18,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": false,
|
||||
"section": "References",
|
||||
"color": [
|
||||
@ -4579,7 +4579,7 @@
|
||||
"value": "Mill",
|
||||
"reason": "Published Information found",
|
||||
"matchedRule": 18,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": false,
|
||||
"section": "References",
|
||||
"color": [
|
||||
@ -4714,7 +4714,7 @@
|
||||
"value": "Ford, PA",
|
||||
"reason": "Published Information found",
|
||||
"matchedRule": 18,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": false,
|
||||
"section": "References",
|
||||
"color": [
|
||||
@ -4813,7 +4813,7 @@
|
||||
"value": "Court",
|
||||
"reason": "Published Information found",
|
||||
"matchedRule": 18,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": false,
|
||||
"section": "References",
|
||||
"color": [
|
||||
@ -4858,7 +4858,7 @@
|
||||
"value": "Mill",
|
||||
"reason": "Published Information found",
|
||||
"matchedRule": 18,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": false,
|
||||
"section": "References",
|
||||
"color": [
|
||||
@ -10069,7 +10069,7 @@
|
||||
"value": "Rectangle",
|
||||
"reason": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"matchedRule": 0,
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"redacted": true,
|
||||
"section": "Signature",
|
||||
"color": [
|
||||
@ -10114,7 +10114,7 @@
|
||||
"value": "Rectangle",
|
||||
"reason": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"matchedRule": 0,
|
||||
"legalBasis": "specification_impurity",
|
||||
"legalBasis": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"redacted": true,
|
||||
"section": "Formula",
|
||||
"color": [
|
||||
@ -10158,56 +10158,47 @@
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "personal_data_geolocation_article_39e3"
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "vertebrate_study_personal_data_geolocation_article_39e2"
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "manufacturing_production_process"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "links_producer_applicant"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "commercial_information"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "quantitative_composition"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "specification_impurity"
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "results_production_batches"
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "composition_plant_protection_product"
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 780,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -116,7 +116,7 @@
|
||||
"value": "Melanie",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -221,7 +221,7 @@
|
||||
"value": "Maximiliam Schmitt",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -275,7 +275,7 @@
|
||||
"value": "food-industry@korea.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -328,7 +328,7 @@
|
||||
"value": "gordonjcp@msn.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -380,7 +380,7 @@
|
||||
"value": "Ranya Eikenboom",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -432,7 +432,7 @@
|
||||
"value": "maximiliamschmitt@t-online.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -486,7 +486,7 @@
|
||||
"value": "Siegfried",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -538,7 +538,7 @@
|
||||
"value": "+81 764770164",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -592,7 +592,7 @@
|
||||
"value": "Doe J.",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -724,7 +724,7 @@
|
||||
"value": "+274 1432 8933",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -778,7 +778,7 @@
|
||||
"value": "Xinyi Y. Tao",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -830,7 +830,7 @@
|
||||
"value": "+274 1432 8933",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -884,7 +884,7 @@
|
||||
"value": "+27414328992",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -938,7 +938,7 @@
|
||||
"value": "Naka-27 Aomachi, Nomi, Ishikawa 923-1101, Japan, JP",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -990,7 +990,7 @@
|
||||
"value": "Desiree",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -1042,7 +1042,7 @@
|
||||
"value": "+274 34223331",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1148,7 +1148,7 @@
|
||||
"value": "CTL/with dictionary entry 1234 with Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -1200,7 +1200,7 @@
|
||||
"value": "+274 1432 8991",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1306,7 +1306,7 @@
|
||||
"value": "+82 122 34180",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -1359,7 +1359,7 @@
|
||||
"value": "David Ksenia",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -1411,7 +1411,7 @@
|
||||
"value": "Schmitt",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -1463,7 +1463,7 @@
|
||||
"value": "Emilia Lockhart",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -1571,7 +1571,7 @@
|
||||
"value": "+82 122 34180",
|
||||
"reason": "Found after \"Fax:\" contact keyword",
|
||||
"matchedRule": "PII.4.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -1623,7 +1623,7 @@
|
||||
"value": "maximiliamschmitt@t-online.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1677,7 +1677,7 @@
|
||||
"value": "Seriknowmobil@co.uk",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1731,7 +1731,7 @@
|
||||
"value": "Özgür U. Reyhan",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -1783,7 +1783,7 @@
|
||||
"value": "Central Research Industry",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1837,7 +1837,7 @@
|
||||
"value": "+81 6653 44563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -1891,7 +1891,7 @@
|
||||
"value": "+81 6653 44563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2053,7 +2053,7 @@
|
||||
"value": "+274 1432 8990",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2107,7 +2107,7 @@
|
||||
"value": "Central Research Industry",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -2215,7 +2215,7 @@
|
||||
"value": "Dr. Alan Grant",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
15,
|
||||
@ -2346,7 +2346,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -2404,7 +2404,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -2462,7 +2462,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -2520,7 +2520,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3334,7 +3334,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3536,7 +3536,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3594,7 +3594,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3652,7 +3652,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3737,7 +3737,7 @@
|
||||
"value": "Dr. Alan Grant Rule 33/34: If Text contains \"Performing Lab\" and \"Lab Project ID\", then Redact everything between Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No Study Report___ PERFORMING LABORATORY: Umbrella Corporation LABORATORY PROJECT ID: Number 20201/33991/ERZAT/21 Rule 35/36/37/38: ?? Tba Rule 39: Purity Hint Add Purity as Hint when Percent-Numbers is there Test Item: Soda Purity: 45% ← should be Hint Purity: <45% ← should be Hint Purity: >45% ← should be Hint Purity: 101% ← should ne be Hint because >100 % is not possible Purity: =>45% ← should be not Hint because additional symbols Purity: =<45% ← should be not Hint because additional symbols Purity: aa 45% ← should be not Hint because additional symbols Purity: 45% aa ← should be not Hint because additional symbols Purity: aa45% ← should be not Hint because additional symbols Purity: 45%aa ← should be not Hint because additional symbols Product-Code: EAK-L443 purity: 99% ← not Hint because case sensitive purity: >99% ← not Hint because case sensitive purity: <99% ← not Hint because case sensitive Supplier: GreenForce Test Item: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Purity: Product-Code: purity: purity: purity: Supplier: Soda 45% <45% >45% 101% =>45% =<45% aa 45% 45% aa aa45% 45%aa EAK-L443 99% ← not Hint because case sensitive >99% ← not Hint because case sensitive <99% ← not Hint because case sensitive GreenForce ← should be Hint ← should be Hint ← should be Hint ← should ne be Hint because >100 % is not possible ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols ← should be not Hint because additional symbols Rule 40: Ignore Dossier-Redaction if Confidentiality is not set Dont redact Dossier-Redaction if Confidentiality is not set in file attributes Excepteur sint occaecat cupidatat non proident, myDossierRedaction sunt in culpa qui officia deserunt mollit anim id est laborum. Rule 41/42: Redact Signatures Redact when Vertebrate Study is Yes Redact when Vertebrate Study is No __________________________ __________________________ Signed by: Dilara Sonnenschein Signed by: Tobias Müller __________________________ Signed by: Dilara Sonnenschein __________________________ Signed by: Tobias Müller Rule 43: Redact Logo Redact Logo only if Vertebrate Study is Yes, else do nothing (skipped) This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Header This is a Page-Footer This is a Page-Footer Dont redact here because of missing second key; Species: Mouse; Omni Consumer Products Dont redact here because missing second keyword; Species: Mouse, Resources Development Administration This is a Page-Footer This is a Page-Footer This is a Page-Footer This is a Page-Footer",
|
||||
"reason": "AUTHOR(S) was found",
|
||||
"matchedRule": "CBI.23.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [],
|
||||
"closestHeadline": "Rule 0: Expand CBI Authors with firstname initials ",
|
||||
@ -3795,7 +3795,7 @@
|
||||
"value": "CTL with dictionary entry 5678 without Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -3847,7 +3847,7 @@
|
||||
"value": "Riddley Scott",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -3900,7 +3900,7 @@
|
||||
"value": "library@outlook.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -3952,7 +3952,7 @@
|
||||
"value": "Maximiliam Schmitt",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4006,7 +4006,7 @@
|
||||
"value": "example@mail.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4060,7 +4060,7 @@
|
||||
"value": "Jill Valentine",
|
||||
"reason": "Found after \"Contact:\" contact keyword",
|
||||
"matchedRule": "PII.5.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -4112,7 +4112,7 @@
|
||||
"value": "Kong",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4220,7 +4220,7 @@
|
||||
"value": "493 1223 4592",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4382,7 +4382,7 @@
|
||||
"value": "example@mail.com",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4436,7 +4436,7 @@
|
||||
"value": "+49 2113 2311 563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4544,7 +4544,7 @@
|
||||
"value": "+49 2113 2311 563",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4598,7 +4598,7 @@
|
||||
"value": "Emilia Lockhart",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -4652,7 +4652,7 @@
|
||||
"value": "Max Mustermann",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -4756,7 +4756,7 @@
|
||||
"value": "maximiliamschmitt@arcor.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4864,7 +4864,7 @@
|
||||
"value": "+274 1432 8991",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -4918,7 +4918,7 @@
|
||||
"value": "kawasaki@me.com",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -4970,7 +4970,7 @@
|
||||
"value": "Seriknowmobil@co.uk",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5024,7 +5024,7 @@
|
||||
"value": "This is a special case, everything between this and the next keyword should be redacted",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5086,7 +5086,7 @@
|
||||
"value": "Feuer A.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -5247,7 +5247,7 @@
|
||||
"value": "+275 5678 1234 132",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5458,7 +5458,7 @@
|
||||
"value": "Sude Halide Nurullah",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -5510,7 +5510,7 @@
|
||||
"value": "Key",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
8,
|
||||
@ -5616,7 +5616,7 @@
|
||||
"value": "Funnarie B.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -5671,7 +5671,7 @@
|
||||
"value": "European Central Institute",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5725,7 +5725,7 @@
|
||||
"value": "+274 1432 8990",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -5779,7 +5779,7 @@
|
||||
"value": "+274 34223331",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -5833,7 +5833,7 @@
|
||||
"value": "dinther@comcast.net",
|
||||
"reason": "Found by Email Regex",
|
||||
"matchedRule": "PII.1.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
11,
|
||||
@ -5885,7 +5885,7 @@
|
||||
"value": "M. Mustermann",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -5989,7 +5989,7 @@
|
||||
"value": "Charalampos Schenk",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
1,
|
||||
@ -6041,7 +6041,7 @@
|
||||
"value": "BL with dictionary entry 5678 without Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -6093,7 +6093,7 @@
|
||||
"value": "+27414328992",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -6147,7 +6147,7 @@
|
||||
"value": "+82 122 34188",
|
||||
"reason": "Found after \"Phone:\" contact keyword",
|
||||
"matchedRule": "PII.4.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -6251,7 +6251,7 @@
|
||||
"value": "+81 764770164",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -6305,7 +6305,7 @@
|
||||
"value": "+82 122 34188",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -6358,7 +6358,7 @@
|
||||
"value": "Michael N.",
|
||||
"reason": "Author(s) found",
|
||||
"matchedRule": "CBI.9.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
4,
|
||||
@ -6413,7 +6413,7 @@
|
||||
"value": "Desiree",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -6465,7 +6465,7 @@
|
||||
"value": "493 1223 4592",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -6582,7 +6582,7 @@
|
||||
"value": "BL/with dictionary entry 1234 with Slash",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
5,
|
||||
@ -6634,7 +6634,7 @@
|
||||
"value": "C. J. Alfred",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -6686,7 +6686,7 @@
|
||||
"value": "+49 2113 2311 560",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -6740,7 +6740,7 @@
|
||||
"value": "B. Rahim",
|
||||
"reason": "Personal Information found",
|
||||
"matchedRule": "PII.0.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
10,
|
||||
@ -6896,7 +6896,7 @@
|
||||
"value": "pharma-industry@korea.com",
|
||||
"reason": "Found after \"E-mail:\" contact keyword",
|
||||
"matchedRule": "PII.4.2",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
14,
|
||||
@ -6948,7 +6948,7 @@
|
||||
"value": "maximiliamschmitt@arcor.de",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -7002,7 +7002,7 @@
|
||||
"value": "+49 2113 2311 560",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -7110,7 +7110,7 @@
|
||||
"value": "Kong",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
13,
|
||||
@ -7218,7 +7218,7 @@
|
||||
"value": "Melanie",
|
||||
"reason": "Author found by \"et al\" regex",
|
||||
"matchedRule": "CBI.16.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
6,
|
||||
@ -7270,7 +7270,7 @@
|
||||
"value": "Doe",
|
||||
"reason": "Author found",
|
||||
"matchedRule": "CBI.0.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
0,
|
||||
@ -7374,7 +7374,7 @@
|
||||
"value": "European Central Institute",
|
||||
"reason": "Applicant information was found",
|
||||
"matchedRule": "PII.7.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
12,
|
||||
@ -7530,7 +7530,7 @@
|
||||
"value": "Image:Signature",
|
||||
"reason": "Signature Found",
|
||||
"matchedRule": "ETC.2.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
20,
|
||||
@ -7580,7 +7580,7 @@
|
||||
"value": "Image:Signature",
|
||||
"reason": "Signature Found",
|
||||
"matchedRule": "ETC.2.1",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
20,
|
||||
@ -7680,7 +7680,7 @@
|
||||
"value": "Clarissa’s Donut",
|
||||
"reason": "manual entries are applied by default, created by manual change",
|
||||
"matchedRule": "MAN.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
3,
|
||||
@ -7743,7 +7743,7 @@
|
||||
"value": "Simpson's To",
|
||||
"reason": "manual entries are applied by default, created by manual change",
|
||||
"matchedRule": "MAN.5.0",
|
||||
"legalBasis": "personal_data_geolocation_article_39e3",
|
||||
"legalBasis": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"imported": false,
|
||||
"containingNodeId": [
|
||||
3,
|
||||
@ -7803,56 +7803,47 @@
|
||||
{
|
||||
"name": "1.1 personal data (incl. geolocation); Article 39(e)(3)",
|
||||
"description": "(Regulations (EU) 2016/679 and (EU) 2018/1725 shall apply to the processing of personal data carried out pursuant to this Regulation. Any personal data made public pursuant to Article 38 of this Regulation and this Article shall only be used to ensure the transparency of the risk assessment under this Regulation and shall not be further processed in a manner that is incompatible with these purposes, in accordance with point (b) of Article 5(1) of Regulation (EU) 2016/679 and point (b) of Article 4(1) of Regulation (EU) 2018/1725, as the case may be)",
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "personal_data_geolocation_article_39e3"
|
||||
"reason": "Article 39(e)(3) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "1.2 vertebrate study related personal data (incl. geolocation); Article 39(e)(2)",
|
||||
"description": "personal data (names and addresses) of individuals involved in testing on vertebrate studies or in obtaining toxicological information",
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002",
|
||||
"technicalName": "vertebrate_study_personal_data_geolocation_article_39e2"
|
||||
"reason": "Article 39(e)(2) of Regulation (EC) No 178/2002"
|
||||
},
|
||||
{
|
||||
"name": "2. manufacturing or production process",
|
||||
"description": "the manufacturing or production process, including the method and innovative aspects thereof, as well as other technical and industrial specifications inherent to that process or method, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "manufacturing_production_process"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "3. links between a producer and applicant",
|
||||
"description": "commercial links between a producer or importer and the applicant or the authorisation holder, where applicable",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "links_producer_applicant"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "4. commercial information",
|
||||
"description": "commercial information revealing sourcing, market shares or business strategy of the applicant",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "commercial_information"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "5. quantitative composition",
|
||||
"description": "quantitative composition of the subject matter of the request, except for information which is relevant to the assessment of safety",
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)",
|
||||
"technicalName": "quantitative_composition"
|
||||
"reason": "Article 63(2)(a) of Regulation (EC) No 1107/2009 (making reference to Article 39 of Regulation EC No 178/2002)"
|
||||
},
|
||||
{
|
||||
"name": "6. specification of impurity",
|
||||
"description": "the specification of impurity of the active substance and the related methods of analysis for impurities in the active substance as manufactured, except for the impurities that are considered to be toxicologically, ecotoxicologically or environmentally relevant and the related methods of analysis for such impurities",
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "specification_impurity"
|
||||
"reason": "Article 63(2)(b) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "7. results of production batches",
|
||||
"description": "results of production batches of the active substance including impurities",
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "results_production_batches"
|
||||
"reason": "Article 63(2)(c) of Regulation (EC) No 1107/2009"
|
||||
},
|
||||
{
|
||||
"name": "8. composition of a plant protection product",
|
||||
"description": "information on the complete composition of a plant protection product",
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009",
|
||||
"technicalName": "composition_plant_protection_product"
|
||||
"reason": "Article 63(2)(d) of Regulation (EC) No 1107/2009"
|
||||
}
|
||||
],
|
||||
"dictionaryVersion": 20,
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
[
|
||||
[
|
||||
{
|
||||
"id": "1b5ebe26-34f2-4c3b-983d-c0f0a010302c",
|
||||
"csvColumnHeader": "OECD Number",
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
{
|
||||
"name": "n-a.",
|
||||
"description": "n-a.",
|
||||
"reason": "n-a.",
|
||||
"technicalName": "n-a."
|
||||
"reason": "n-a."
|
||||
}
|
||||
]
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user