Compare commits
26 Commits
master
...
RED-10683-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d294dda999 | ||
|
|
a525fe6887 | ||
|
|
1c6ab159f9 | ||
|
|
a652de293b | ||
|
|
583ced03f5 | ||
|
|
bcdb54d304 | ||
|
|
713fbddbf0 | ||
|
|
c760a5f5ef | ||
|
|
28d6950b55 | ||
|
|
06c8608774 | ||
|
|
4df06b4bad | ||
|
|
c6caeb001c | ||
|
|
98e2f4f239 | ||
|
|
79a643a571 | ||
|
|
539857a6fb | ||
|
|
827ca3de11 | ||
|
|
f8af6cbc79 | ||
|
|
33e1198440 | ||
|
|
8fb5acb0ce | ||
|
|
2d0f4a8d38 | ||
|
|
96278040b2 | ||
|
|
d8f2982152 | ||
|
|
199f79baff | ||
|
|
b9b2c26526 | ||
|
|
12250c57e2 | ||
|
|
eff750e226 |
@ -24,5 +24,4 @@ deploy:
|
||||
rules:
|
||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||
- if: $CI_COMMIT_BRANCH =~ /^release/
|
||||
- if: $CI_COMMIT_BRANCH =~ /^feature/
|
||||
- if: $CI_COMMIT_TAG
|
||||
@ -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}"
|
||||
@ -5,7 +5,7 @@ plugins {
|
||||
|
||||
description = "redaction-report-service-api-v1"
|
||||
|
||||
val persistenceServiceVersion = "2.562.0-RED9348.2"
|
||||
val persistenceServiceVersion = "2.465.91"
|
||||
|
||||
dependencies {
|
||||
implementation("io.github.openfeign:feign-core:12.2")
|
||||
|
||||
@ -0,0 +1,28 @@
|
||||
package com.iqser.red.service.redaction.report.v1.api.resource;
|
||||
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.ResponseStatus;
|
||||
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.DetailedRSSResponse;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.RSSResponse;
|
||||
|
||||
@ResponseStatus(value = HttpStatus.OK)
|
||||
public interface RSSResource {
|
||||
|
||||
String RSS_PATH = "/rss";
|
||||
|
||||
String DOSSIER_ID = "dossierId";
|
||||
String DOSSIER_ID_PATH_VARIABLE = "/{" + DOSSIER_ID + "}";
|
||||
|
||||
|
||||
@GetMapping(value = RSS_PATH + DOSSIER_ID_PATH_VARIABLE, produces = {MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE})
|
||||
RSSResponse getRSS(@PathVariable(DOSSIER_ID) String dossierId, @RequestParam(value = "fileId", required = false) String fileId);
|
||||
|
||||
@GetMapping(value = RSS_PATH + "/detailed" + DOSSIER_ID_PATH_VARIABLE, produces = {MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE})
|
||||
DetailedRSSResponse getDetailedRSS(@PathVariable(DOSSIER_ID) String dossierId, @RequestParam(value = "fileId", required = false) String fileId);
|
||||
|
||||
}
|
||||
@ -11,13 +11,13 @@ plugins {
|
||||
|
||||
description = "redaction-service-server-v1"
|
||||
|
||||
val tenantCommonVersion = "0.30.0"
|
||||
val tenantCommonVersion = "0.23.0"
|
||||
val springCommonsVersion = "2.1.0"
|
||||
val storageCommonsVersion = "2.45.0"
|
||||
val lifecycleCommonsVersion = "0.4.0"
|
||||
val poiVersion = "5.2.3"
|
||||
val metricCommonsVersion = "2.1.0"
|
||||
val persistenceServiceVersion = "2.562.0-RED9348.2"
|
||||
val lifecycleCommonsVersion = "0.6.0"
|
||||
val persistenceServiceVersion = "2.465.91"
|
||||
val springBootStarterVersion = "3.2.3"
|
||||
|
||||
configurations {
|
||||
@ -36,10 +36,10 @@ dependencies {
|
||||
implementation("com.iqser.red.service:persistence-service-shared-mongo-v1:${persistenceServiceVersion}")
|
||||
|
||||
implementation("com.knecon.fforesight:tenant-commons:${tenantCommonVersion}")
|
||||
implementation("com.knecon.fforesight:lifecycle-commons:${lifecycleCommonsVersion}")
|
||||
implementation("com.iqser.red.commons:storage-commons:${storageCommonsVersion}")
|
||||
implementation("com.iqser.red.commons:spring-commons:${springCommonsVersion}")
|
||||
implementation("com.iqser.red.commons:metric-commons:${metricCommonsVersion}")
|
||||
implementation("com.knecon.fforesight:lifecycle-commons:${lifecycleCommonsVersion}")
|
||||
implementation("com.knecon.fforesight:tracing-commons:0.5.0")
|
||||
|
||||
implementation("org.apache.poi:poi:${poiVersion}")
|
||||
@ -47,7 +47,6 @@ dependencies {
|
||||
implementation("org.apache.poi:poi-scratchpad:${poiVersion}")
|
||||
|
||||
implementation("org.springframework.boot:spring-boot-starter-amqp:${springBootStarterVersion}")
|
||||
implementation("io.github.openfeign:feign-core:12.2")
|
||||
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:4.1.1")
|
||||
implementation("org.apache.commons:commons-lang3:3.12.0")
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.configuration;
|
||||
|
||||
import org.springframework.amqp.core.DirectExchange;
|
||||
import org.springframework.amqp.core.Queue;
|
||||
import org.springframework.amqp.core.QueueBuilder;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
@ -12,25 +11,43 @@ import lombok.RequiredArgsConstructor;
|
||||
@RequiredArgsConstructor
|
||||
public class MessagingConfiguration {
|
||||
|
||||
public static final String REPORT_REQUEST_QUEUE_PREFIX = "report_request";
|
||||
public static final String REPORT_REQUEST_EXCHANGE = "report_request_exchange";
|
||||
public static final String REPORT_REQUEST_DLQ = "report_request_error";
|
||||
public static final String REPORT_QUEUE = "reportQueue";
|
||||
public static final String REPORT_DLQ = "reportDLQ";
|
||||
|
||||
public static final String REPORT_RESPONSE_EXCHANGE = "report_response_exchange";
|
||||
public static final String REPORT_RESPONSE_DLQ = "report_response_error";
|
||||
public static final String REPORT_RESULT_QUEUE = "reportResultQueue";
|
||||
public static final String REPORT_RESULT_DLQ = "reportResultDLQ";
|
||||
|
||||
|
||||
@Bean
|
||||
public DirectExchange reportRequestExchange() {
|
||||
public Queue reportQueue() {
|
||||
|
||||
return new DirectExchange(REPORT_REQUEST_EXCHANGE);
|
||||
return QueueBuilder.durable(REPORT_QUEUE)
|
||||
.withArgument("x-dead-letter-exchange", "")
|
||||
.withArgument("x-dead-letter-routing-key", REPORT_DLQ)
|
||||
.withArgument("x-max-priority", 2)
|
||||
.maxPriority(2)
|
||||
.build();
|
||||
}
|
||||
|
||||
|
||||
@Bean
|
||||
public Queue reportRequestDLQ() {
|
||||
public Queue reportDeadLetterQueue() {
|
||||
|
||||
return QueueBuilder.durable(REPORT_REQUEST_DLQ).build();
|
||||
return QueueBuilder.durable(REPORT_DLQ).build();
|
||||
}
|
||||
|
||||
|
||||
@Bean
|
||||
public Queue reportResultQueue() {
|
||||
|
||||
return QueueBuilder.durable(REPORT_RESULT_QUEUE).withArgument("x-dead-letter-exchange", "").withArgument("x-dead-letter-routing-key", REPORT_RESULT_DLQ).build();
|
||||
}
|
||||
|
||||
|
||||
@Bean
|
||||
public Queue reportResultDeadLetterQueue() {
|
||||
|
||||
return QueueBuilder.durable(REPORT_RESULT_DLQ).build();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.configuration;
|
||||
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
import com.knecon.fforesight.tenantcommons.queue.TenantMessagingConfiguration;
|
||||
|
||||
@Configuration
|
||||
public class TenantMessagingConfigurationImpl extends TenantMessagingConfiguration {
|
||||
|
||||
}
|
||||
@ -0,0 +1,56 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.DetailedRSSFileResponse;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.DetailedRSSResponse;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.RSSFileResponse;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.RSSResponse;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.rss.SCMComponent;
|
||||
import com.iqser.red.service.redaction.report.v1.api.resource.RSSResource;
|
||||
import com.iqser.red.service.redaction.report.v1.server.service.RSSPoc2Service;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
@RestController
|
||||
@RequiredArgsConstructor
|
||||
public class RSSController implements RSSResource {
|
||||
|
||||
private final RSSPoc2Service rSSService;
|
||||
|
||||
|
||||
public RSSResponse getRSS(@PathVariable(DOSSIER_ID) String dossierId, @RequestParam(value = "fileId", required = false) String fileId) {
|
||||
|
||||
var detailed = rSSService.getRSS(dossierId, fileId);
|
||||
|
||||
List<RSSFileResponse> fileResponses = new ArrayList<>();
|
||||
for (DetailedRSSFileResponse detailedRSSFileResponse : detailed.getFiles()) {
|
||||
String fileName = detailedRSSFileResponse.getFilename();
|
||||
Map<String, String> result = new LinkedHashMap<>();
|
||||
for (Map.Entry<String, SCMComponent> detailedRss : detailedRSSFileResponse.getResult().entrySet()) {
|
||||
if (detailedRss.getValue().getValue() != null) {
|
||||
result.put(detailedRss.getKey(), detailedRss.getValue().getValue());
|
||||
} else {
|
||||
result.put(detailedRss.getKey(), detailedRss.getValue().getOriginalValue());
|
||||
}
|
||||
}
|
||||
fileResponses.add(new RSSFileResponse(fileName, result));
|
||||
}
|
||||
return new RSSResponse(fileResponses);
|
||||
|
||||
}
|
||||
|
||||
|
||||
public DetailedRSSResponse getDetailedRSS(@PathVariable(DOSSIER_ID) String dossierId, @RequestParam(value = "fileId", required = false) String fileId) {
|
||||
|
||||
return rSSService.getRSS(dossierId, fileId);
|
||||
}
|
||||
|
||||
}
|
||||
@ -9,10 +9,5 @@ public class ImagePlaceholder {
|
||||
|
||||
private String placeholder;
|
||||
private byte[] image;
|
||||
private ImageType imageType;
|
||||
|
||||
public enum ImageType{
|
||||
PNG, JPEG
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -19,5 +19,5 @@ public class ReportRedactionEntry {
|
||||
private String value;
|
||||
private String entityDisplayName;
|
||||
private boolean isSkipped;
|
||||
private String entityClosestHeadline;
|
||||
|
||||
}
|
||||
|
||||
@ -1,67 +0,0 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.queue;
|
||||
|
||||
import static com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration.*;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import org.springframework.amqp.rabbit.annotation.RabbitHandler;
|
||||
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
||||
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
||||
import org.springframework.context.event.EventListener;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import com.knecon.fforesight.tenantcommons.TenantProvider;
|
||||
import com.knecon.fforesight.tenantcommons.model.TenantCreatedEvent;
|
||||
import com.knecon.fforesight.tenantcommons.model.TenantQueueConfiguration;
|
||||
import com.knecon.fforesight.tenantcommons.model.TenantResponse;
|
||||
import com.knecon.fforesight.tenantcommons.queue.RabbitQueueFromExchangeService;
|
||||
import com.knecon.fforesight.tenantcommons.queue.TenantExchangeMessageReceiver;
|
||||
|
||||
@Service
|
||||
public class TenantExchangeMessageReceiverImpl extends TenantExchangeMessageReceiver {
|
||||
|
||||
public TenantExchangeMessageReceiverImpl(RabbitQueueFromExchangeService rabbitQueueService, TenantProvider tenantProvider) {
|
||||
|
||||
super(rabbitQueueService, tenantProvider);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected Set<TenantQueueConfiguration> getTenantQueueConfigs() {
|
||||
|
||||
return Set.of(TenantQueueConfiguration.builder()
|
||||
.listenerId(ReportMessageReceiver.REPORT_REQUEST_LISTENER_ID)
|
||||
.exchangeName(REPORT_REQUEST_EXCHANGE)
|
||||
.queuePrefix(REPORT_REQUEST_QUEUE_PREFIX)
|
||||
.dlqName(REPORT_REQUEST_DLQ)
|
||||
.arguments(Map.of("x-max-priority", 2))
|
||||
.build());
|
||||
}
|
||||
|
||||
|
||||
@EventListener(ApplicationReadyEvent.class)
|
||||
public void onApplicationReady() {
|
||||
|
||||
System.out.println("application ready invoked");
|
||||
super.initializeQueues();
|
||||
}
|
||||
|
||||
|
||||
@RabbitHandler
|
||||
@RabbitListener(queues = "#{tenantMessagingConfigurationImpl.getTenantCreatedQueueName()}")
|
||||
public void reactToTenantCreation(TenantCreatedEvent tenantCreatedEvent) {
|
||||
|
||||
super.reactToTenantCreation(tenantCreatedEvent);
|
||||
}
|
||||
|
||||
|
||||
@RabbitHandler
|
||||
@RabbitListener(queues = "#{tenantMessagingConfigurationImpl.getTenantDeletedQueueName()}")
|
||||
public void reactToTenantDeletion(TenantResponse tenantResponse) {
|
||||
|
||||
super.reactToTenantDeletion(tenantResponse);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@ -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) {
|
||||
|
||||
@ -32,7 +32,7 @@ public class ComponentRowsReportService {
|
||||
|
||||
public void addComponentRows(Sheet sheet, FileModel fileModel, ExcelModel excelModel) {
|
||||
|
||||
ComponentLog componentLog = componentResource.getComponentLog(fileModel.getDossierId(), fileModel.getId());
|
||||
ComponentLog componentLog = componentResource.getComponentLog(fileModel.getDossierId(), fileModel.getId(), true);
|
||||
|
||||
AtomicInteger rowIndex = new AtomicInteger(excelModel.getRedactionPlaceholderRow());
|
||||
|
||||
@ -41,7 +41,7 @@ public class ComponentRowsReportService {
|
||||
componentLog.getComponentLogEntries()
|
||||
.forEach(componentLogEntry -> {
|
||||
|
||||
if (componentLogEntry.getValues().isEmpty()) {
|
||||
if (componentLogEntry.getComponentValues().isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -51,7 +51,7 @@ public class ComponentRowsReportService {
|
||||
List<List<String>> valueChunksList = new ArrayList<>();
|
||||
int maxChunks = 0;
|
||||
|
||||
for (ComponentLogEntryValue valueEntry : componentLogEntry.getValues()) {
|
||||
for (ComponentLogEntryValue valueEntry : componentLogEntry.getComponentValues()) {
|
||||
String value = valueEntry.getValue();
|
||||
List<String> chunks = cellTextChunkingService.process(value);
|
||||
valueChunksList.add(chunks);
|
||||
|
||||
@ -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;
|
||||
@ -71,8 +70,8 @@ public class EntityLogConverterService {
|
||||
private Map<String, String> fillMapOfTypeAndEntityDisplayName(String dossierId) {
|
||||
|
||||
List<Type> typeList = new ArrayList<>();
|
||||
typeList.addAll(dictionaryClient.getAllTypesForDossier(dossierId, null, true));
|
||||
typeList.addAll(dictionaryClient.getAllTypesForDossierTemplate(dossierClient.getDossierById(dossierId, true, false).getDossierTemplateId(), null, true));
|
||||
typeList.addAll(dictionaryClient.getAllTypesForDossier(dossierId, true));
|
||||
typeList.addAll(dictionaryClient.getAllTypesForDossierTemplate(dossierClient.getDossierById(dossierId, true, false).getDossierTemplateId(), true));
|
||||
|
||||
Map<String, String> mapOfEntityDisplayName = new HashMap<>();
|
||||
|
||||
@ -157,27 +156,27 @@ 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()) + " " + legalBasisMappings.stream()
|
||||
.filter(lbm -> lbm.getReason().equalsIgnoreCase(entry.getLegalBasis()))
|
||||
.findAny()
|
||||
.map(EntityLogLegalBasis::getDescription)
|
||||
.orElse(""),
|
||||
entry.getLegalBasis(),
|
||||
entry.getParagraphPageIdx(),
|
||||
entityLogLegalBasis.getDescription(),
|
||||
legalBasisMappings.stream()
|
||||
.filter(lbm -> lbm.getReason().equalsIgnoreCase(entry.getLegalBasis()))
|
||||
.findAny()
|
||||
.map(EntityLogLegalBasis::getDescription)
|
||||
.orElse(""),
|
||||
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));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@ -163,7 +163,6 @@ public class ExcelModelFactory {
|
||||
lastCellIndex += 1;
|
||||
col += 1;
|
||||
sheet.shiftColumns(col, lastCellIndex, 1);
|
||||
actualRow = sheet.getRow(row);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -248,9 +248,9 @@ public class ExcelReportGenerationService {
|
||||
PixelUtil.heightUnits2Pixel(cell.getRow().getHeight()));
|
||||
|
||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
ImageIO.write(image, imagePlaceholder.getImageType().equals(ImagePlaceholder.ImageType.PNG) ? "png" : "jpg", baos);
|
||||
ImageIO.write(image, "jpg", baos);
|
||||
baos.flush();
|
||||
int pictureIdx = workbook.addPicture(baos.toByteArray(), imagePlaceholder.getImageType().equals(ImagePlaceholder.ImageType.PNG) ? SXSSFWorkbook.PICTURE_TYPE_PNG : SXSSFWorkbook.PICTURE_TYPE_JPEG);
|
||||
int pictureIdx = workbook.addPicture(baos.toByteArray(), SXSSFWorkbook.PICTURE_TYPE_JPEG);
|
||||
baos.close();
|
||||
|
||||
CreationHelper helper = getCreationHelper(workbook);
|
||||
|
||||
@ -43,7 +43,6 @@ public class GeneratePlaceholderService {
|
||||
private final DossierAttributesClient dossierAttributesClient;
|
||||
private final DossierAttributesConfigClient dossierAttributesConfigClient;
|
||||
private final RSSPoc2Service rSSService;
|
||||
public static String PNG_IMAGE_REGEX = "data:image/png;base64.*";
|
||||
|
||||
|
||||
public PlaceholderModel buildPlaceholders(Dossier dossier) {
|
||||
@ -64,15 +63,10 @@ public class GeneratePlaceholderService {
|
||||
|
||||
if (dossierAttribute.getValue() != null) {
|
||||
if (dossierAttribute.getValue().startsWith("data:")) {
|
||||
|
||||
imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(),
|
||||
Base64.getDecoder().decode(dossierAttribute.getValue().split(",")[1]),
|
||||
isPng(dossierAttribute.getValue()) ? ImagePlaceholder.ImageType.PNG : ImagePlaceholder.ImageType.JPEG));
|
||||
|
||||
Base64.getDecoder().decode(dossierAttribute.getValue().split(",")[1])));
|
||||
} else {
|
||||
imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(),
|
||||
Base64.getDecoder().decode(dossierAttribute.getValue()),
|
||||
ImagePlaceholder.ImageType.JPEG));
|
||||
imagePlaceholders.add(new ImagePlaceholder(attributeConfig.getPlaceholder(), Base64.getDecoder().decode(dossierAttribute.getValue())));
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@ -96,12 +90,6 @@ public class GeneratePlaceholderService {
|
||||
}
|
||||
|
||||
|
||||
private boolean isPng(String imageString) {
|
||||
|
||||
return imageString.startsWith("data:image/png");
|
||||
}
|
||||
|
||||
|
||||
private Map<String, String> getFileAttributePlaceholders(String dossierTemplateId) {
|
||||
|
||||
Map<String, String> fileAttributePlaceholders = new HashMap<>();
|
||||
@ -115,14 +103,14 @@ public class GeneratePlaceholderService {
|
||||
public Set<String> getDefaultPlaceholders() {
|
||||
|
||||
return new HashSet<>(Set.of(FILE_NAME_PLACEHOLDER,
|
||||
FORMAT_DATE_ISO_PLACEHOLDER,
|
||||
FORMAT_DATE_GER_PLACEHOLDER,
|
||||
FORMAT_DATE_ENG_PLACEHOLDER,
|
||||
FORMAT_TIME_ISO_PLACEHOLDER,
|
||||
DOSSIER_NAME_PLACEHOLDER,
|
||||
IUCLID_FUNCTION_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER));
|
||||
FORMAT_DATE_ISO_PLACEHOLDER,
|
||||
FORMAT_DATE_GER_PLACEHOLDER,
|
||||
FORMAT_DATE_ENG_PLACEHOLDER,
|
||||
FORMAT_TIME_ISO_PLACEHOLDER,
|
||||
DOSSIER_NAME_PLACEHOLDER,
|
||||
IUCLID_FUNCTION_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.queue;
|
||||
package com.iqser.red.service.redaction.report.v1.server.service;
|
||||
|
||||
import static com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration.REPORT_RESPONSE_EXCHANGE;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration.REPORT_QUEUE;
|
||||
import static com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration.REPORT_RESULT_QUEUE;
|
||||
|
||||
import org.springframework.amqp.AmqpRejectAndDontRequeueException;
|
||||
import org.springframework.amqp.core.Message;
|
||||
@ -12,8 +13,6 @@ import org.springframework.stereotype.Service;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.ReportRequestMessage;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.ReportResultMessage;
|
||||
import com.iqser.red.service.redaction.report.v1.server.service.ReportGenerationService;
|
||||
import com.knecon.fforesight.tenantcommons.TenantContext;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.SneakyThrows;
|
||||
@ -24,8 +23,6 @@ import lombok.extern.slf4j.Slf4j;
|
||||
@RequiredArgsConstructor
|
||||
public class ReportMessageReceiver {
|
||||
|
||||
public static final String REPORT_REQUEST_LISTENER_ID = "report-request-listener";
|
||||
|
||||
private final ObjectMapper objectMapper;
|
||||
private final ReportGenerationService reportGenerationService;
|
||||
private final RabbitTemplate rabbitTemplate;
|
||||
@ -33,7 +30,7 @@ public class ReportMessageReceiver {
|
||||
|
||||
@SneakyThrows
|
||||
@RabbitHandler
|
||||
@RabbitListener(id = REPORT_REQUEST_LISTENER_ID)
|
||||
@RabbitListener(queues = REPORT_QUEUE)
|
||||
public void receive(Message message) {
|
||||
|
||||
ReportRequestMessage reportMessage = objectMapper.readValue(message.getBody(), ReportRequestMessage.class);
|
||||
@ -56,7 +53,7 @@ public class ReportMessageReceiver {
|
||||
|
||||
private void addToReportResultQueue(String userId, String downloadId, String reportFileInformationStorageId) {
|
||||
|
||||
rabbitTemplate.convertAndSend(REPORT_RESPONSE_EXCHANGE, TenantContext.getTenantId(), new ReportResultMessage(userId, downloadId, reportFileInformationStorageId));
|
||||
rabbitTemplate.convertAndSend(REPORT_RESULT_QUEUE, new ReportResultMessage(userId, downloadId, reportFileInformationStorageId));
|
||||
}
|
||||
|
||||
}
|
||||
@ -44,7 +44,7 @@ public class ScmReportService {
|
||||
|
||||
public void addComponentRows(Sheet sheet, FileModel fileModel, ExcelModel excelModel) {
|
||||
|
||||
ComponentLog componentLog = componentResource.getComponentLog(fileModel.getDossierId(), fileModel.getId());
|
||||
ComponentLog componentLog = componentResource.getComponentLog(fileModel.getDossierId(), fileModel.getId(), true);
|
||||
|
||||
AtomicInteger rowIndexCounter = new AtomicInteger(excelModel.getRedactionPlaceholderRow());
|
||||
|
||||
@ -52,8 +52,14 @@ public class ScmReportService {
|
||||
|
||||
componentLog.getComponentLogEntries()
|
||||
.forEach(componentLogEntry -> {
|
||||
|
||||
if (componentLogEntry.getComponentValues().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()) {
|
||||
|
||||
for (ComponentLogEntryValue componentLogEntryValue : componentLogEntry.getComponentValues()) {
|
||||
|
||||
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) {
|
||||
|
||||
@ -82,7 +82,6 @@ import lombok.extern.slf4j.Slf4j;
|
||||
public class WordReportGenerationService {
|
||||
|
||||
private final IuclidFunctionService iuclidFunctionService;
|
||||
public static String PNG_IMAGE_REGEX = "data:image/png;base64.*";
|
||||
|
||||
|
||||
@Timed("redactmanager_generateWordReport")
|
||||
@ -96,9 +95,7 @@ public class WordReportGenerationService {
|
||||
|
||||
long start = System.currentTimeMillis();
|
||||
|
||||
List<ReportRedactionEntry> reportEntries = allReportEntries.stream()
|
||||
.filter(entry -> !entry.isSkipped())
|
||||
.collect(Collectors.toList());
|
||||
List<ReportRedactionEntry> reportEntries = allReportEntries.stream().filter(entry -> !entry.isSkipped()).collect(Collectors.toList());
|
||||
|
||||
int sumOfChars = 0;
|
||||
|
||||
@ -121,12 +118,12 @@ public class WordReportGenerationService {
|
||||
}
|
||||
|
||||
log.info("Report Generation took: {} for file with id {}, pageCount: {}, entityLogEntryCount: {}, reportName: {}, className: {}",
|
||||
System.currentTimeMillis() - start,
|
||||
fileModel.getId(),
|
||||
fileModel.getNumberOfPages(),
|
||||
reportEntries.size(),
|
||||
reportTemplateName,
|
||||
getClass().getSimpleName());
|
||||
System.currentTimeMillis() - start,
|
||||
fileModel.getId(),
|
||||
fileModel.getNumberOfPages(),
|
||||
reportEntries.size(),
|
||||
reportTemplateName,
|
||||
getClass().getSimpleName());
|
||||
|
||||
} catch (Exception e) {
|
||||
log.error(e.getMessage() + " in file: " + fileModel.getFilename());
|
||||
@ -143,11 +140,8 @@ public class WordReportGenerationService {
|
||||
return;
|
||||
}
|
||||
for (int j = 0; j < table.getRows().size(); j++) {
|
||||
for (int i = 0; i < table.getRows()
|
||||
.get(j).getTableCells().size(); i++) {
|
||||
XWPFTableCell cell = table.getRows()
|
||||
.get(j).getTableCells()
|
||||
.get(i);
|
||||
for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) {
|
||||
XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i);
|
||||
if (containsRedactionPlaceholder(cell.getText())) {
|
||||
table.removeRow(j);
|
||||
return;
|
||||
@ -168,7 +162,6 @@ public class WordReportGenerationService {
|
||||
}
|
||||
}
|
||||
}
|
||||
replaceParagraphForImagePlaceholder(doc.getParagraphs(), imagePlaceholder, img);
|
||||
}
|
||||
}
|
||||
|
||||
@ -202,13 +195,11 @@ public class WordReportGenerationService {
|
||||
}
|
||||
|
||||
if (placeholderModel.getFileAttributeValueByPlaceholder().containsKey(placeholder)) {
|
||||
return placeholderModel.getFileAttributeValueByPlaceholder()
|
||||
.get(placeholder);
|
||||
return placeholderModel.getFileAttributeValueByPlaceholder().get(placeholder);
|
||||
}
|
||||
|
||||
if (placeholderModel.getDossierAttributesValueByPlaceholder().containsKey(placeholder)) {
|
||||
return placeholderModel.getDossierAttributesValueByPlaceholder()
|
||||
.get(placeholder);
|
||||
return placeholderModel.getDossierAttributesValueByPlaceholder().get(placeholder);
|
||||
}
|
||||
|
||||
return "";
|
||||
@ -221,22 +212,15 @@ public class WordReportGenerationService {
|
||||
String paragraphText = p.getText();
|
||||
if (paragraphText.contains(imagePlaceholder.getPlaceholder())) {
|
||||
try {
|
||||
|
||||
XWPFRun run = p.getRuns()
|
||||
.get(0);
|
||||
run.setText("", 0);
|
||||
run.addBreak();
|
||||
|
||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
ImageIO.write(img, imagePlaceholder.getImageType().equals(ImagePlaceholder.ImageType.PNG) ? "png" : "jpg", baos);
|
||||
ImageIO.write(img, "jpg", baos);
|
||||
baos.flush();
|
||||
ByteArrayInputStream is = new ByteArrayInputStream(baos.toByteArray());
|
||||
|
||||
run.addPicture(is,
|
||||
imagePlaceholder.getImageType().equals(ImagePlaceholder.ImageType.PNG) ? XWPFDocument.PICTURE_TYPE_PNG : XWPFDocument.PICTURE_TYPE_JPEG,
|
||||
imagePlaceholder.getImageType().equals(ImagePlaceholder.ImageType.PNG) ? "image.png" : "image.jpg",
|
||||
Units.toEMU(img.getWidth()),
|
||||
Units.toEMU(img.getHeight()));
|
||||
XWPFRun run = p.getRuns().get(0);
|
||||
run.setText("", 0);
|
||||
run.addBreak();
|
||||
run.addPicture(is, XWPFDocument.PICTURE_TYPE_JPEG, "image.jpg", Units.toEMU(img.getWidth()), Units.toEMU(img.getHeight()));
|
||||
|
||||
for (int i = p.getRuns().size() - 1; i > 0; i--) {
|
||||
p.removeRun(i);
|
||||
@ -296,14 +280,13 @@ public class WordReportGenerationService {
|
||||
var search = entry.getKey();
|
||||
var replace = entry.getValue();
|
||||
|
||||
if (paragraphText.contains(search)) {
|
||||
if (replace != null && paragraphText.contains(search)) {
|
||||
isIuclid = search.equals(IUCLID_FUNCTION_PLACEHOLDER);
|
||||
String escapedSearch = Pattern.quote(search);
|
||||
String escapedReplace = Matcher.quoteReplacement(replace);
|
||||
try {
|
||||
paragraphText = paragraphText.replaceAll(escapedSearch, escapedReplace);
|
||||
XWPFRun run = p.getRuns()
|
||||
.get(0);
|
||||
XWPFRun run = p.getRuns().get(0);
|
||||
run.setText(paragraphText, 0);
|
||||
sumOfChars += paragraphText.length();
|
||||
} catch (Exception e) {
|
||||
@ -347,8 +330,7 @@ public class WordReportGenerationService {
|
||||
private void splitIntoRuns(XWPFParagraph p, String[] stringsOnNewLines, int i) {
|
||||
|
||||
p.insertNewRun(i);
|
||||
XWPFRun newRun = p.getRuns()
|
||||
.get(i);
|
||||
XWPFRun newRun = p.getRuns().get(i);
|
||||
setTextToRun(newRun, stringsOnNewLines[i]);
|
||||
newRun.addCarriageReturn();
|
||||
}
|
||||
@ -371,8 +353,7 @@ public class WordReportGenerationService {
|
||||
if (i < newLineParagraphs.size()) {
|
||||
doc.setParagraph(newLineParagraphs.get(i), i);
|
||||
} else {
|
||||
paragraphsToRemove.add(doc.getParagraphs()
|
||||
.get(i));
|
||||
paragraphsToRemove.add(doc.getParagraphs().get(i));
|
||||
}
|
||||
}
|
||||
|
||||
@ -396,17 +377,10 @@ public class WordReportGenerationService {
|
||||
|
||||
for (XWPFTable tbl : doc.getTables()) {
|
||||
String tblText = tbl.getText();
|
||||
if (tblText.contains(PAGE_PLACEHOLDER)
|
||||
|| tblText.contains(PARAGRAPH_PLACEHOLDER)
|
||||
|| tblText.contains(PARAGRAPH_INDEX_PLACEHOLDER)
|
||||
|| tblText.contains(JUSTIFICATION_PLACEHOLDER)
|
||||
|| tblText.contains(EXCERPT_PLACEHOLDER)
|
||||
|| tblText.contains(JUSTIFICATION_PARAGRAPH_PLACEHOLDER)
|
||||
|| tblText.contains(JUSTIFICATION_REASON_PLACEHOLDER)
|
||||
|| tblText.contains(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER)
|
||||
|| tblText.contains(JUSTIFICATION_TEXT_PLACEHOLDER)
|
||||
|| tblText.contains(SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER)
|
||||
|| tblText.contains(SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)) {
|
||||
if (tblText.contains(PAGE_PLACEHOLDER) || tblText.contains(PARAGRAPH_PLACEHOLDER) || tblText.contains(PARAGRAPH_INDEX_PLACEHOLDER) || tblText.contains(JUSTIFICATION_PLACEHOLDER) || tblText.contains(EXCERPT_PLACEHOLDER) || tblText.contains(
|
||||
JUSTIFICATION_PARAGRAPH_PLACEHOLDER) || tblText.contains(JUSTIFICATION_REASON_PLACEHOLDER) || tblText.contains(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER) || tblText.contains(
|
||||
JUSTIFICATION_TEXT_PLACEHOLDER) || tblText.contains(SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER) || tblText.contains(
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)) {
|
||||
return tbl;
|
||||
}
|
||||
}
|
||||
@ -416,22 +390,12 @@ public class WordReportGenerationService {
|
||||
|
||||
private boolean containsRedactionPlaceholder(String text) {
|
||||
|
||||
return text.startsWith(DOSSIER_ATTRIBUTE_PLACEHOLDER_BASE)
|
||||
|| text.startsWith(FILE_ATTRIBUTE_PLACEHOLDER_BASE)
|
||||
|| text.contains(FILE_NAME_PLACEHOLDER)
|
||||
|| text.contains(PAGE_PLACEHOLDER)
|
||||
|| text.contains(PARAGRAPH_PLACEHOLDER)
|
||||
|| text.contains(PARAGRAPH_INDEX_PLACEHOLDER)
|
||||
|| text.contains(JUSTIFICATION_PLACEHOLDER)
|
||||
|| text.contains(EXCERPT_PLACEHOLDER)
|
||||
|| text.contains(JUSTIFICATION_PARAGRAPH_PLACEHOLDER)
|
||||
|| text.contains(JUSTIFICATION_REASON_PLACEHOLDER)
|
||||
|| text.contains(REDACTION_VALUE_PLACEHOLDER)
|
||||
|| text.contains(JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER)
|
||||
|| text.contains(JUSTIFICATION_TEXT_PLACEHOLDER)
|
||||
|| text.contains(SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER)
|
||||
|| text.contains(SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)
|
||||
|| text.contains(REDACTION_ENTITY_DISPLAY_NAME_PLACEHOLDER);
|
||||
return text.startsWith(DOSSIER_ATTRIBUTE_PLACEHOLDER_BASE) || text.startsWith(FILE_ATTRIBUTE_PLACEHOLDER_BASE) || text.contains(FILE_NAME_PLACEHOLDER) || text.contains(
|
||||
PAGE_PLACEHOLDER) || text.contains(PARAGRAPH_PLACEHOLDER) || text.contains(PARAGRAPH_INDEX_PLACEHOLDER) || text.contains(JUSTIFICATION_PLACEHOLDER) || text.contains(EXCERPT_PLACEHOLDER) || text.contains(
|
||||
JUSTIFICATION_PARAGRAPH_PLACEHOLDER) || text.contains(JUSTIFICATION_REASON_PLACEHOLDER) || text.contains(REDACTION_VALUE_PLACEHOLDER) || text.contains(
|
||||
JUSTIFICATION_LEGAL_BASIS_PLACEHOLDER) || text.contains(JUSTIFICATION_TEXT_PLACEHOLDER) || text.contains(
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER) || text.contains(SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER) || text.contains(
|
||||
REDACTION_ENTITY_DISPLAY_NAME_PLACEHOLDER);
|
||||
}
|
||||
|
||||
|
||||
@ -442,11 +406,8 @@ public class WordReportGenerationService {
|
||||
|
||||
if (table != null) {
|
||||
for (int j = 0; j < table.getRows().size(); j++) {
|
||||
for (int i = 0; i < table.getRows()
|
||||
.get(j).getTableCells().size(); i++) {
|
||||
XWPFTableCell cell = table.getRows()
|
||||
.get(j).getTableCells()
|
||||
.get(i);
|
||||
for (int i = 0; i < table.getRows().get(j).getTableCells().size(); i++) {
|
||||
XWPFTableCell cell = table.getRows().get(j).getTableCells().get(i);
|
||||
if (containsRedactionPlaceholder(cell.getText())) {
|
||||
placeholderCellPos.put(i, getFunctionForPlaceHolder(cell.getText(), foundPlaceHolder, placeholderModel));
|
||||
} else if (cell.getText().isEmpty()) {
|
||||
@ -506,7 +467,7 @@ public class WordReportGenerationService {
|
||||
}
|
||||
if (placeholder.equals(PARAGRAPH_INDEX_PLACEHOLDER)) {
|
||||
foundPlaceholders.add(PARAGRAPH_INDEX_PLACEHOLDER);
|
||||
return input -> String.valueOf(input.getEntry().getParagraphIdx());
|
||||
return input -> String.valueOf(input.getEntry().getParagraphIdx());
|
||||
}
|
||||
if (placeholder.equals(PARAGRAPH_PLACEHOLDER)) {
|
||||
foundPlaceholders.add(PARAGRAPH_PLACEHOLDER);
|
||||
@ -538,8 +499,7 @@ public class WordReportGenerationService {
|
||||
}
|
||||
if (placeholder.equals(REDACTION_VALUE_PLACEHOLDER)) {
|
||||
foundPlaceholders.add(REDACTION_VALUE_PLACEHOLDER);
|
||||
return input -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" {2}", " ") : input.getEntry()
|
||||
.getEntityDisplayName();
|
||||
return input -> input.getEntry().getValue() != null ? input.getEntry().getValue().replaceAll("\n", " ").replaceAll(" {2}", " ") : input.getEntry().getEntityDisplayName();
|
||||
}
|
||||
if (placeholder.equals(REDACTION_ENTITY_DISPLAY_NAME_PLACEHOLDER)) {
|
||||
foundPlaceholders.add(REDACTION_ENTITY_DISPLAY_NAME_PLACEHOLDER);
|
||||
@ -548,10 +508,7 @@ public class WordReportGenerationService {
|
||||
|
||||
if (placeholder.equals(SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER)) {
|
||||
foundPlaceholders.add(SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER);
|
||||
return input -> computePageRanges(input.getRedactionsPerJustificationEntry().getValue()
|
||||
.stream()
|
||||
.map(ReportRedactionEntry::getPage)
|
||||
.collect(Collectors.toSet()));
|
||||
return input -> computePageRanges(input.getRedactionsPerJustificationEntry().getValue().stream().map(ReportRedactionEntry::getPage).collect(Collectors.toSet()));
|
||||
}
|
||||
|
||||
if (placeholder.equals(SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER)) {
|
||||
@ -560,14 +517,12 @@ public class WordReportGenerationService {
|
||||
|
||||
if (placeholderModel.getFileAttributeValueByPlaceholder().containsKey(placeholder)) {
|
||||
foundPlaceholders.add(placeholder);
|
||||
return input -> input.getPlaceholderModel().getFileAttributeValueByPlaceholder()
|
||||
.get(placeholder);
|
||||
return input -> input.getPlaceholderModel().getFileAttributeValueByPlaceholder().get(placeholder);
|
||||
}
|
||||
|
||||
if (placeholderModel.getDossierAttributesValueByPlaceholder().containsKey(placeholder)) {
|
||||
foundPlaceholders.add(placeholder);
|
||||
return input -> input.getPlaceholderModel().getDossierAttributesValueByPlaceholder()
|
||||
.get(placeholder);
|
||||
return input -> input.getPlaceholderModel().getDossierAttributesValueByPlaceholder().get(placeholder);
|
||||
}
|
||||
|
||||
return input -> "";
|
||||
@ -657,9 +612,7 @@ public class WordReportGenerationService {
|
||||
|
||||
private Map<String, List<ReportRedactionEntry>> getRedactionsPerJustification(List<ReportRedactionEntry> reportRedactionEntryList) {
|
||||
|
||||
return reportRedactionEntryList.stream()
|
||||
.sorted(Comparator.comparing(ReportRedactionEntry::getPage))
|
||||
.collect(Collectors.groupingBy(ReportRedactionEntry::getJustification));
|
||||
return reportRedactionEntryList.stream().sorted(Comparator.comparing(ReportRedactionEntry::getPage)).collect(Collectors.groupingBy(ReportRedactionEntry::getJustification));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -7,7 +7,6 @@ fforesight.tenants.remote: true
|
||||
|
||||
server:
|
||||
port: 8080
|
||||
shutdown: graceful
|
||||
|
||||
lifecycle:
|
||||
base-package: com.iqser.red.service.redaction.report.v1.server
|
||||
|
||||
@ -1,209 +0,0 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server;
|
||||
|
||||
import static com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration.REPORT_RESPONSE_EXCHANGE;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||
import static org.mockito.ArgumentMatchers.any;
|
||||
import static org.mockito.ArgumentMatchers.anyBoolean;
|
||||
import static org.mockito.ArgumentMatchers.eq;
|
||||
import static org.mockito.Mockito.times;
|
||||
import static org.mockito.Mockito.verify;
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.junit.jupiter.MockitoExtension;
|
||||
import org.springframework.amqp.AmqpRejectAndDontRequeueException;
|
||||
import org.springframework.amqp.core.Message;
|
||||
import org.springframework.amqp.core.MessageProperties;
|
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
import org.springframework.context.annotation.Import;
|
||||
import org.springframework.test.context.junit.jupiter.SpringExtension;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.iqser.red.service.persistence.service.v1.api.shared.model.dossiertemplate.dossier.Dossier;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.ReportRequestMessage;
|
||||
import com.iqser.red.service.redaction.report.v1.api.model.ReportResultMessage;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.ComponentClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.DictionaryClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.DossierAttributesConfigClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.DossierClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.FileAttributesConfigClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.client.ReportTemplateClient;
|
||||
import com.iqser.red.service.redaction.report.v1.server.config.AspectTestConfig;
|
||||
import com.iqser.red.service.redaction.report.v1.server.configuration.MessagingConfiguration;
|
||||
import com.iqser.red.service.redaction.report.v1.server.queue.ReportMessageReceiver;
|
||||
import com.iqser.red.service.redaction.report.v1.server.service.EntityLogConverterService;
|
||||
import com.iqser.red.service.redaction.report.v1.server.service.ExcelReportGenerationService;
|
||||
import com.iqser.red.service.redaction.report.v1.server.service.GeneratePlaceholderService;
|
||||
import com.iqser.red.service.redaction.report.v1.server.service.WordReportGenerationService;
|
||||
import com.iqser.red.service.redaction.report.v1.server.storage.ReportStorageService;
|
||||
import com.iqser.red.service.redaction.report.v1.server.utils.TestController;
|
||||
import com.iqser.red.storage.commons.service.StorageService;
|
||||
import com.knecon.fforesight.lifecyclecommons.LifecycleManager;
|
||||
import com.knecon.fforesight.tenantcommons.TenantContext;
|
||||
import com.knecon.fforesight.tenantcommons.TenantsClient;
|
||||
|
||||
import lombok.SneakyThrows;
|
||||
|
||||
@ExtendWith({SpringExtension.class, MockitoExtension.class})
|
||||
@SpringBootTest
|
||||
@Import(AspectTestConfig.class)
|
||||
public class LifecycleAspectTest {
|
||||
|
||||
@Autowired
|
||||
private ReportMessageReceiver reportMessageReceiver;
|
||||
|
||||
@Autowired
|
||||
private TestController testController;
|
||||
|
||||
@Autowired
|
||||
private LifecycleManager lifecycleManager;
|
||||
|
||||
@Mock
|
||||
private Message mockMessage;
|
||||
|
||||
@MockBean
|
||||
TenantsClient tenantsClient;
|
||||
|
||||
@Autowired
|
||||
private ObjectMapper objectMapper;
|
||||
|
||||
@MockBean
|
||||
private StorageService storageService;
|
||||
|
||||
@MockBean
|
||||
private RabbitTemplate rabbitTemplate;
|
||||
|
||||
@MockBean
|
||||
private ReportStorageService reportStorageService;
|
||||
|
||||
@MockBean
|
||||
private ReportTemplateClient reportTemplateClient;
|
||||
|
||||
@MockBean
|
||||
private FileAttributesConfigClient fileAttributesConfigClient;
|
||||
|
||||
@Autowired
|
||||
private WordReportGenerationService wordReportGenerationService;
|
||||
|
||||
@MockBean
|
||||
private MessagingConfiguration messagingConfiguration;
|
||||
|
||||
@Autowired
|
||||
private EntityLogConverterService entityLogConverterService;
|
||||
|
||||
@MockBean
|
||||
private DossierAttributesConfigClient dossierAttributesConfigClient;
|
||||
|
||||
@MockBean
|
||||
private DossierAttributesClient dossierAttributesClient;
|
||||
|
||||
@Autowired
|
||||
private ExcelReportGenerationService excelTemplateReportGenerationService;
|
||||
|
||||
@Autowired
|
||||
private GeneratePlaceholderService generatePlaceholderService;
|
||||
|
||||
@MockBean
|
||||
private DictionaryClient dictionaryClient;
|
||||
|
||||
@MockBean
|
||||
private DossierClient dossierClient;
|
||||
|
||||
@MockBean
|
||||
private ComponentClient componentClient;
|
||||
|
||||
@Mock
|
||||
private MessageProperties mockMessageProperties;
|
||||
|
||||
@BeforeEach
|
||||
public void setup() {
|
||||
|
||||
lifecycleManager.start();
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testRabbitListenerAspectWhenRunning() throws Exception {
|
||||
|
||||
ReportRequestMessage reportRequestMessage = ReportRequestMessage.builder()
|
||||
.userId("test-user")
|
||||
.downloadId("123")
|
||||
.dossierId("dossierId")
|
||||
.dossierTemplateId("dossierTemplateId")
|
||||
.build();
|
||||
|
||||
String json = objectMapper.writeValueAsString(reportRequestMessage);
|
||||
|
||||
prepareDossier();
|
||||
when(mockMessage.getBody()).thenReturn(json.getBytes());
|
||||
when(mockMessage.getMessageProperties()).thenReturn(mockMessageProperties);
|
||||
|
||||
reportMessageReceiver.receive(mockMessage);
|
||||
lifecycleManager.stop();
|
||||
|
||||
verify(rabbitTemplate, times(1)).convertAndSend(eq(REPORT_RESPONSE_EXCHANGE), eq(TenantContext.getTenantId()), any(ReportResultMessage.class));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRabbitListenerAspectWhenNotRunning() {
|
||||
|
||||
lifecycleManager.stop();
|
||||
|
||||
assertThrows(AmqpRejectAndDontRequeueException.class, () -> {
|
||||
reportMessageReceiver.receive(mockMessage);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
@SneakyThrows
|
||||
public void testHttpGetAspectWhenRunning() {
|
||||
|
||||
String response = testController.testGet();
|
||||
|
||||
assertEquals("Test Get", response);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
@SneakyThrows
|
||||
public void testStopLifecycleWhenRunning() {
|
||||
|
||||
String response = testController.testGet();
|
||||
|
||||
lifecycleManager.stop();
|
||||
assertEquals("Test Get", response);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testHttpGetAspectWhenNotRunning() {
|
||||
|
||||
lifecycleManager.stop();
|
||||
|
||||
Exception exception = assertThrows(AmqpRejectAndDontRequeueException.class, () -> {
|
||||
testController.testGet();
|
||||
});
|
||||
assertEquals("Application is shutting down, rejecting new messages.", exception.getMessage());
|
||||
}
|
||||
|
||||
@SneakyThrows
|
||||
private Dossier prepareDossier() {
|
||||
|
||||
var testDossier = new Dossier();
|
||||
testDossier.setName("Test Dossier");
|
||||
testDossier.setDossierTemplateId("dossierTemplateId");
|
||||
testDossier.setId("dossierId");
|
||||
|
||||
when(dossierClient.getDossierById(eq("dossierId"), anyBoolean(), anyBoolean())).thenReturn(testDossier);
|
||||
return testDossier;
|
||||
}
|
||||
}
|
||||
@ -10,9 +10,7 @@ import org.apache.commons.io.IOUtils;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.springframework.amqp.rabbit.core.RabbitAdmin;
|
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
||||
import org.springframework.amqp.rabbit.listener.RabbitListenerEndpointRegistry;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration;
|
||||
@ -54,12 +52,6 @@ public class PlaceholderTest {
|
||||
@MockBean
|
||||
private RabbitTemplate rabbitTemplate;
|
||||
|
||||
@MockBean
|
||||
protected RabbitAdmin rabbitAdmin;
|
||||
|
||||
@MockBean
|
||||
protected RabbitListenerEndpointRegistry rabbitListenerEndpointRegistry;
|
||||
|
||||
@MockBean
|
||||
private ReportTemplateClient reportTemplateClient;
|
||||
|
||||
|
||||
@ -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;
|
||||
@ -40,9 +39,7 @@ import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.Mockito;
|
||||
import org.springframework.amqp.rabbit.core.RabbitAdmin;
|
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
||||
import org.springframework.amqp.rabbit.listener.RabbitListenerEndpointRegistry;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration;
|
||||
@ -109,12 +106,6 @@ public class RedactionReportIntegrationTest {
|
||||
@MockBean
|
||||
private RabbitTemplate rabbitTemplate;
|
||||
|
||||
@MockBean
|
||||
protected RabbitAdmin rabbitAdmin;
|
||||
|
||||
@MockBean
|
||||
protected RabbitListenerEndpointRegistry rabbitListenerEndpointRegistry;
|
||||
|
||||
@MockBean
|
||||
private ReportStorageService reportStorageService;
|
||||
|
||||
@ -183,23 +174,21 @@ public class RedactionReportIntegrationTest {
|
||||
});
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, new HashMap<>());
|
||||
|
||||
var wordTemplateResource = new ClassPathResource("templates/AllPlaceholders.docx");
|
||||
var imageResource = new ClassPathResource("files/signature-40145.png");
|
||||
var wordTemplateResource = new ClassPathResource("templates/Justification Appendix A1.docx");
|
||||
var imageResource = new ClassPathResource("files/exampleImage.jpg");
|
||||
|
||||
var placeholders = buildPlaceHolderModel(Map.of("{{dossier.attribute.ActiveSubstance}}",
|
||||
"Aktive Substanz \n Test Return",
|
||||
"{{dossier.attribute.RapporteurMemberState}}",
|
||||
"Reporter Status",
|
||||
"{{dossier.attribute.Name}}",
|
||||
"Dossier Name",
|
||||
"{{dossier.attribute.Company}}",
|
||||
"Firma",
|
||||
"{{dossier.attribute.Date}}",
|
||||
"2021-11-09T23:00:00.000Z"),
|
||||
Map.of("{{file.attribute.placeholder}}", "Test"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}",
|
||||
IOUtils.toByteArray(imageResource.getInputStream()),
|
||||
ImagePlaceholder.ImageType.PNG)));
|
||||
"Aktive Substanz \n Test Return",
|
||||
"{{dossier.attribute.RapporteurMemberState}}",
|
||||
"Reporter Status",
|
||||
"{{dossier.attribute.Name}}",
|
||||
"Dossier Name",
|
||||
"{{dossier.attribute.Company}}",
|
||||
"Firma",
|
||||
"{{dossier.attribute.Date}}",
|
||||
"2021-11-09T23:00:00.000Z"),
|
||||
Map.of("{{file.attribute.placeholder}}", "Test"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}", IOUtils.toByteArray(imageResource.getInputStream()))));
|
||||
|
||||
XWPFDocument doc = new XWPFDocument(wordTemplateResource.getInputStream());
|
||||
wordReportGenerationService.generateWordReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true);
|
||||
@ -239,19 +228,17 @@ public class RedactionReportIntegrationTest {
|
||||
var imageResource = new ClassPathResource("files/exampleImage.jpg");
|
||||
|
||||
var placeholders = buildPlaceHolderModel(Map.of("{{dossier.attribute.ActiveSubstance}}",
|
||||
"Aktive Substanz \n Test Return",
|
||||
"{{dossier.attribute.RapporteurMemberState}}",
|
||||
"Reporter Status",
|
||||
"{{dossier.attribute.Name}}",
|
||||
"Dossier Name",
|
||||
"{{dossier.attribute.Company}}",
|
||||
"Firma",
|
||||
"{{dossier.attribute.Date}}",
|
||||
"2021-11-09T23:00:00.000Z"),
|
||||
Map.of("{{file.attribute.placeholder}}", "Test"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}",
|
||||
IOUtils.toByteArray(imageResource.getInputStream()),
|
||||
ImagePlaceholder.ImageType.JPEG)));
|
||||
"Aktive Substanz \n Test Return",
|
||||
"{{dossier.attribute.RapporteurMemberState}}",
|
||||
"Reporter Status",
|
||||
"{{dossier.attribute.Name}}",
|
||||
"Dossier Name",
|
||||
"{{dossier.attribute.Company}}",
|
||||
"Firma",
|
||||
"{{dossier.attribute.Date}}",
|
||||
"2021-11-09T23:00:00.000Z"),
|
||||
Map.of("{{file.attribute.placeholder}}", "Test"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}", IOUtils.toByteArray(imageResource.getInputStream()))));
|
||||
|
||||
XWPFDocument doc = new XWPFDocument(wordTemplateResource.getInputStream());
|
||||
wordReportGenerationService.generateWordReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true);
|
||||
@ -311,13 +298,9 @@ 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,
|
||||
entityLog,
|
||||
legalBasisMapping,
|
||||
Map.of("signature", "Signature", "logo", "Logo"));
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, Map.of("signature", "Signature", "logo", "Logo"));
|
||||
|
||||
ClassPathResource templateResource = new ClassPathResource("templates/IUCLID_Template.docx");
|
||||
XWPFDocument doc = new XWPFDocument(templateResource.getInputStream());
|
||||
@ -405,19 +388,17 @@ public class RedactionReportIntegrationTest {
|
||||
var imageResource = new ClassPathResource("files/exampleImage.jpg");
|
||||
|
||||
var placeholders = buildPlaceHolderModel(Map.of("{{dossier.attribute.ActiveSubstance}}",
|
||||
"Aktive Substanz \n Test Return",
|
||||
"{{dossier.attribute.RapporteurMemberState}}",
|
||||
"Reporter Status",
|
||||
"{{dossier.attribute.Name}}",
|
||||
"Dossier Name",
|
||||
"{{dossier.attribute.Company}}",
|
||||
"Firma",
|
||||
"{{dossier.attribute.Date}}",
|
||||
"2021-11-09T23:00:00.000Z"),
|
||||
Map.of("{{file.attribute.placeholder}}", "Test"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}",
|
||||
IOUtils.toByteArray(imageResource.getInputStream()),
|
||||
ImagePlaceholder.ImageType.JPEG)));
|
||||
"Aktive Substanz \n Test Return",
|
||||
"{{dossier.attribute.RapporteurMemberState}}",
|
||||
"Reporter Status",
|
||||
"{{dossier.attribute.Name}}",
|
||||
"Dossier Name",
|
||||
"{{dossier.attribute.Company}}",
|
||||
"Firma",
|
||||
"{{dossier.attribute.Date}}",
|
||||
"2021-11-09T23:00:00.000Z"),
|
||||
Map.of("{{file.attribute.placeholder}}", "Test"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}", IOUtils.toByteArray(imageResource.getInputStream()))));
|
||||
|
||||
XWPFDocument doc = new XWPFDocument(wordTemplateResource.getInputStream());
|
||||
wordReportGenerationService.generateWordReport(reportEntries, placeholders, "test", doc, fileModel, dossier, true);
|
||||
@ -468,7 +449,7 @@ public class RedactionReportIntegrationTest {
|
||||
List<EntityLogLegalBasis> legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() {
|
||||
});
|
||||
Map<String, String> mapOfEntityDisplayName = createEntityDisplayNames(entityLog);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID,entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
|
||||
FileModel fileModel = FileModel.builder().filename("filename").build();
|
||||
|
||||
@ -483,11 +464,7 @@ public class RedactionReportIntegrationTest {
|
||||
excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, "dossierName", fileModel, excelModel, false);
|
||||
|
||||
EntityLog entityLogSecondFile = objectMapper.readValue(new ClassPathResource("files/entityLog.json").getInputStream(), EntityLog.class);
|
||||
List<ReportRedactionEntry> reportEntriesSecondFile = entityLogConverterService.convertAndSort(DOSSIER_ID,
|
||||
FILE_ID,
|
||||
entityLogSecondFile,
|
||||
legalBasisMapping,
|
||||
mapOfEntityDisplayName);
|
||||
List<ReportRedactionEntry> reportEntriesSecondFile = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLogSecondFile, legalBasisMapping, mapOfEntityDisplayName);
|
||||
FileModel fileModelSecondFile = FileModel.builder().filename("secondFile").build();
|
||||
excelTemplateReportGenerationService.generateExcelReport(reportEntriesSecondFile,
|
||||
placeholders,
|
||||
@ -549,7 +526,7 @@ public class RedactionReportIntegrationTest {
|
||||
List<EntityLogLegalBasis> legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() {
|
||||
});
|
||||
Map<String, String> mapOfEntityDisplayName = createEntityDisplayNames(entityLog);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID,entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
var imageResource = new ClassPathResource("files/exampleImage.jpg");
|
||||
|
||||
FileModel fileModel = FileModel.builder().filename("filename").build();
|
||||
@ -557,10 +534,8 @@ public class RedactionReportIntegrationTest {
|
||||
ClassPathResource templateResource = new ClassPathResource("templates/Excel Report_PlaceholderTest.xlsx");
|
||||
|
||||
var placeholders = buildPlaceHolderModel(Map.of("{{dossier_attribute.test1}}", "replaced_dossier_test1"),
|
||||
Map.of("{{file_attribute.test1}}", "replaced_file_test1", "{{file_attribute.test2}}", "replaced_file_test2"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}",
|
||||
IOUtils.toByteArray(imageResource.getInputStream()),
|
||||
ImagePlaceholder.ImageType.JPEG)));
|
||||
Map.of("{{file_attribute.test1}}", "replaced_file_test1", "{{file_attribute.test2}}", "replaced_file_test2"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}", IOUtils.toByteArray(imageResource.getInputStream()))));
|
||||
|
||||
XSSFWorkbook readWorkbook = new XSSFWorkbook(templateResource.getInputStream());
|
||||
var excelModel = excelModelFactory.calculateExcelModel(readWorkbook.getSheetAt(0), dossier.getDossierTemplateId());
|
||||
@ -584,7 +559,7 @@ public class RedactionReportIntegrationTest {
|
||||
List<EntityLogLegalBasis> legalBasisMapping = objectMapper.readValue(new ClassPathResource("files/legalBasisMapping.json").getInputStream(), new TypeReference<>() {
|
||||
});
|
||||
Map<String, String> mapOfEntityDisplayName = createEntityDisplayNames(entityLog);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID,entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
var imageResource = new ClassPathResource("files/exampleImage.jpg");
|
||||
|
||||
FileModel fileModel = FileModel.builder().filename("filename").build();
|
||||
@ -594,8 +569,7 @@ public class RedactionReportIntegrationTest {
|
||||
var placeholders = buildPlaceHolderModel(Map.of("{{dossier_attribute.test1}}", "replaced_dossier_test1"),
|
||||
Map.of("{{file_attribute.test1}}", "replaced_file_test1", "{{file_attribute.test2}}", "replaced_file_test2"),
|
||||
List.of(new ImagePlaceholder("{{dossier.attribute.Signature}}",
|
||||
IOUtils.toByteArray(imageResource.getInputStream()),
|
||||
ImagePlaceholder.ImageType.JPEG)));
|
||||
IOUtils.toByteArray(imageResource.getInputStream()))));
|
||||
|
||||
XSSFWorkbook readWorkbook = new XSSFWorkbook(templateResource.getInputStream());
|
||||
var excelModel = excelModelFactory.calculateExcelModel(readWorkbook.getSheetAt(0), dossier.getDossierTemplateId());
|
||||
@ -604,7 +578,7 @@ public class RedactionReportIntegrationTest {
|
||||
excelTemplateReportGenerationService.generateExcelReport(reportEntries, placeholders, "test", writeWorkbook, "dossierName", fileModel, excelModel, true);
|
||||
|
||||
byte[] excelTemplateReport3 = excelTemplateReportGenerationService.toByteArray(writeWorkbook);
|
||||
try (FileOutputStream fileOutputStream = new FileOutputStream(getTemporaryDirectory() + "Report_Without_Pending_Entries.xlsx")) {
|
||||
try (FileOutputStream fileOutputStream = new FileOutputStream( getTemporaryDirectory() + "/Report_Without_Pending_Entries.xlsx")) {
|
||||
fileOutputStream.write(excelTemplateReport3);
|
||||
}
|
||||
}
|
||||
@ -631,7 +605,7 @@ public class RedactionReportIntegrationTest {
|
||||
Map<String, String> mapOfEntityDisplayName = createEntityDisplayNames(entityLog);
|
||||
List<ReportRedactionEntry> reportEntries = entityLogConverterService.convertAndSort(DOSSIER_ID, FILE_ID, entityLog, legalBasisMapping, mapOfEntityDisplayName);
|
||||
|
||||
when(componentClient.getComponentLog(dossier.getId(), fileModel.getId())).thenReturn(componentLog);
|
||||
when(componentClient.getComponentLog(dossier.getId(), fileModel.getId(), true)).thenReturn(componentLog);
|
||||
when(fileAttributesConfigClient.getFileAttributeConfigs(dossier.getDossierTemplateId())).thenReturn(fileAttributeConfigs);
|
||||
|
||||
ClassPathResource templateResource = new ClassPathResource("templates/scm_report.xlsx");
|
||||
@ -669,7 +643,7 @@ public class RedactionReportIntegrationTest {
|
||||
ComponentLog componentLog = new ComponentLog();
|
||||
componentLog.setComponentLogEntries(List.of(componentLogEntry));
|
||||
|
||||
when(componentClient.getComponentLog(dossier.getId(), fileModel.getId())).thenReturn(componentLog);
|
||||
when(componentClient.getComponentLog(dossier.getId(), fileModel.getId(), true)).thenReturn(componentLog);
|
||||
|
||||
List<FileAttributeConfig> fileAttributeConfigs = objectMapper.readValue(new ClassPathResource("files/scm/fileAttributes.json").getInputStream(), new TypeReference<>() {
|
||||
});
|
||||
@ -704,7 +678,7 @@ public class RedactionReportIntegrationTest {
|
||||
|
||||
ComponentLogEntry componentLogEntry = new ComponentLogEntry();
|
||||
componentLogEntry.setName("TestComponent");
|
||||
componentLogEntry.setValues(List.of(componentLogEntryValue));
|
||||
componentLogEntry.setComponentValues(List.of(componentLogEntryValue));
|
||||
return componentLogEntry;
|
||||
}
|
||||
|
||||
@ -721,8 +695,8 @@ public class RedactionReportIntegrationTest {
|
||||
t3.setLabel("Type 3");
|
||||
t3.setType("Type 3");
|
||||
List<Type> ednList = new ArrayList<>(Arrays.asList(t1, t2, t3));
|
||||
Mockito.when(dictionaryClient.getAllTypesForDossier(Mockito.anyString(), Mockito.anyLong(), Mockito.anyBoolean())).thenReturn(ednList);
|
||||
Mockito.when(dictionaryClient.getAllTypesForDossierTemplate(Mockito.any(), Mockito.anyLong(), Mockito.anyBoolean())).thenReturn(ednList);
|
||||
Mockito.when(dictionaryClient.getAllTypesForDossier(Mockito.anyString(), Mockito.anyBoolean())).thenReturn(ednList);
|
||||
Mockito.when(dictionaryClient.getAllTypesForDossierTemplate(Mockito.any(), Mockito.anyBoolean())).thenReturn(ednList);
|
||||
|
||||
Map<String, String> entityDisplayNames = new HashMap<>();
|
||||
for (var entry : entityLog.getEntityLogEntry()) {
|
||||
@ -740,14 +714,14 @@ public class RedactionReportIntegrationTest {
|
||||
private PlaceholderModel buildPlaceHolderModel(Map<String, String> dossierAttributes, Map<String, String> fileAttributes, List<ImagePlaceholder> imagePlaceholders) {
|
||||
|
||||
var defaultPlaceHolder = new HashSet<>(Set.of(FILE_NAME_PLACEHOLDER,
|
||||
FORMAT_DATE_ISO_PLACEHOLDER,
|
||||
FORMAT_DATE_GER_PLACEHOLDER,
|
||||
FORMAT_DATE_ENG_PLACEHOLDER,
|
||||
FORMAT_TIME_ISO_PLACEHOLDER,
|
||||
DOSSIER_NAME_PLACEHOLDER,
|
||||
IUCLID_FUNCTION_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER, REDACTION_ENTITY_HEADLINE_PLACEHOLDER));
|
||||
FORMAT_DATE_ISO_PLACEHOLDER,
|
||||
FORMAT_DATE_GER_PLACEHOLDER,
|
||||
FORMAT_DATE_ENG_PLACEHOLDER,
|
||||
FORMAT_TIME_ISO_PLACEHOLDER,
|
||||
DOSSIER_NAME_PLACEHOLDER,
|
||||
IUCLID_FUNCTION_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_REDACTION_GROUPED_BY_JUSTIFICATION_PAGES_PLACEHOLDER,
|
||||
SEEDS_FUNCTION_JUSTIFICATION_PLACEHOLDER));
|
||||
defaultPlaceHolder.addAll(dossierAttributes.keySet());
|
||||
defaultPlaceHolder.addAll(fileAttributes.keySet());
|
||||
return new PlaceholderModel(defaultPlaceHolder, imagePlaceholders, dossierAttributes, null, fileAttributes, new HashMap<>());
|
||||
|
||||
@ -35,9 +35,7 @@ import org.apache.poi.ss.usermodel.Sheet;
|
||||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.springframework.amqp.rabbit.core.RabbitAdmin;
|
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
||||
import org.springframework.amqp.rabbit.listener.RabbitListenerEndpointRegistry;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration;
|
||||
@ -77,12 +75,6 @@ public class RedactionReportV2IntegrationTest {
|
||||
@MockBean
|
||||
private RabbitTemplate rabbitTemplate;
|
||||
|
||||
@MockBean
|
||||
protected RabbitAdmin rabbitAdmin;
|
||||
|
||||
@MockBean
|
||||
protected RabbitListenerEndpointRegistry rabbitListenerEndpointRegistry;
|
||||
|
||||
@MockBean
|
||||
private ReportTemplateClient reportTemplateClient;
|
||||
|
||||
|
||||
@ -1,38 +0,0 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.config;
|
||||
|
||||
import org.springframework.boot.test.context.TestConfiguration;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
||||
|
||||
import com.knecon.fforesight.lifecyclecommons.LifecycleAspect;
|
||||
import com.knecon.fforesight.lifecyclecommons.LifecycleManager;
|
||||
import com.knecon.fforesight.lifecyclecommons.LifecycleProperties;
|
||||
|
||||
@TestConfiguration
|
||||
@EnableAspectJAutoProxy
|
||||
public class AspectTestConfig {
|
||||
|
||||
@Bean
|
||||
public LifecycleProperties lifecycleProperties() {
|
||||
|
||||
LifecycleProperties lifecycleProperties = new LifecycleProperties();
|
||||
lifecycleProperties.setBasePackage("com.knecon");
|
||||
return lifecycleProperties;
|
||||
}
|
||||
|
||||
|
||||
@Bean
|
||||
public LifecycleManager lifecycleManager() {
|
||||
|
||||
return new LifecycleManager();
|
||||
}
|
||||
|
||||
|
||||
@Bean
|
||||
public LifecycleAspect lifecycleAspect(LifecycleManager lifecycleManager, LifecycleProperties lifecycleProperties) {
|
||||
|
||||
return new LifecycleAspect(lifecycleManager, lifecycleProperties);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -12,8 +12,6 @@ import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.InjectMocks;
|
||||
import org.mockito.Mock;
|
||||
import org.springframework.amqp.rabbit.core.RabbitAdmin;
|
||||
import org.springframework.amqp.rabbit.listener.RabbitListenerEndpointRegistry;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||
@ -45,12 +43,6 @@ public class EntityLogConverterServiceTest {
|
||||
private static final String DOSSIER_ID = "DossierId";
|
||||
private static final String FILE_ID = "FileId";
|
||||
|
||||
@MockBean
|
||||
protected RabbitAdmin rabbitAdmin;
|
||||
|
||||
@MockBean
|
||||
protected RabbitListenerEndpointRegistry rabbitListenerEndpointRegistry;
|
||||
|
||||
@MockBean
|
||||
TenantsClient tenantsClient;
|
||||
|
||||
@ -89,7 +81,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,17 +0,0 @@
|
||||
package com.iqser.red.service.redaction.report.v1.server.utils;
|
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class TestController {
|
||||
|
||||
@GetMapping("/test-get")
|
||||
public String testGet() throws InterruptedException {
|
||||
|
||||
Thread.sleep(5000);
|
||||
return "Test Get";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -6,9 +6,6 @@ management:
|
||||
endpoints.web.exposure.include: prometheus, health, metrics
|
||||
metrics.export.prometheus.enabled: true
|
||||
|
||||
lifecycle:
|
||||
base-package: com.iqser.red.service.redaction.report.v1.server
|
||||
|
||||
spring:
|
||||
main:
|
||||
allow-circular-references: true
|
||||
@ -25,5 +22,3 @@ spring:
|
||||
password: ${MONGODB_PASSWORD}
|
||||
|
||||
persistence-service.url: "http://mock.url"
|
||||
|
||||
POD_NAME: "redaction-report-service"
|
||||
|
||||
@ -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."
|
||||
}
|
||||
]
|
||||
@ -1,859 +0,0 @@
|
||||
{
|
||||
"analysisNumber": 2,
|
||||
"componentRulesVersion": 1,
|
||||
"componentLogEntries": [
|
||||
{
|
||||
"name": "Study_Title",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats",
|
||||
"originalValue": "SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats",
|
||||
"valueDescription": "First found value of type title or else ''",
|
||||
"componentRuleId": "StudyTitle.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "fdc33ec238d48f3f5c9611ea4ba3ae1b",
|
||||
"type": "title",
|
||||
"entityRuleId": "DOC.6.1",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Performing_Laboratory",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "CiToxLAB Hungary Ltd., Hungary",
|
||||
"originalValue": "CiToxLAB Hungary Ltd., Hungary",
|
||||
"valueDescription": "Laboratory name and country found!",
|
||||
"componentRuleId": "PerformingLaboratory.1.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "f872738237a85170cb073b6220b98e65",
|
||||
"type": "laboratory_name",
|
||||
"entityRuleId": "DOC.7.2",
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"id": "1c6dade9e8ea1a6f5e1b83da05f11368",
|
||||
"type": "laboratory_country",
|
||||
"entityRuleId": "DOC.7.2",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Report_Number",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "12/063-002P",
|
||||
"originalValue": "12/063-002P",
|
||||
"valueDescription": "First found value of type report_number or else ''",
|
||||
"componentRuleId": "ReportNumber.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "8ac7d1ad2d1614527bbb055cebb3824f",
|
||||
"type": "report_number",
|
||||
"entityRuleId": "DOC.2.0",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "GLP_Study",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "Yes",
|
||||
"originalValue": "Yes",
|
||||
"valueDescription": "Yes if present, No if not",
|
||||
"componentRuleId": "GLPStudy.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "23cacb7ae621b9cdf987f50e3bdd115b",
|
||||
"type": "glp_study",
|
||||
"entityRuleId": "DOC.8.0",
|
||||
"page": 3
|
||||
},
|
||||
{
|
||||
"id": "fcd231292774563c812cddcf4d78c1f5",
|
||||
"type": "glp_study",
|
||||
"entityRuleId": "DOC.8.0",
|
||||
"page": 25
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Test_Guidelines_1",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "Nº 402: Acute Dermal Toxicity (24/02/1987)",
|
||||
"originalValue": "Nº 402: Acute Dermal Toxicity (24/02/1987)",
|
||||
"valueDescription": "OECD Number and guideline year mapped!",
|
||||
"componentRuleId": "TestGuideline.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "911e8b6737c9529a40590dbf6778c24b",
|
||||
"type": "oecd_guideline_number",
|
||||
"entityRuleId": "DOC.1.0",
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"id": "962c4942cd62f0103b1bf5759e2e1b1a",
|
||||
"type": "oecd_guideline_year",
|
||||
"entityRuleId": "DOC.1.0",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Test_Guidelines_2",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "EPA OPPTS 870.1200 (1998), EC 440/2008 (2008)",
|
||||
"originalValue": "EPA OPPTS 870.1200 (1998), EC 440/2008 (2008)",
|
||||
"valueDescription": "Joining all values of type ec_guideline, epa_guideline with ', '",
|
||||
"componentRuleId": "TestGuideline.2.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "506ef85dd4dcb0a2df24d203ad21d220",
|
||||
"type": "epa_guideline",
|
||||
"entityRuleId": "DOC.1.0",
|
||||
"page": 1
|
||||
},
|
||||
{
|
||||
"id": "09c476952cbc59e3661b03cd38d463e7",
|
||||
"type": "ec_guideline",
|
||||
"entityRuleId": "DOC.1.0",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Experimental_Starting_Date",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "21/03/2012",
|
||||
"originalValue": "21/03/2012",
|
||||
"valueDescription": "Convert values of type 'experimental_start_date' to dd/MM/yyyy joined with ', '",
|
||||
"componentRuleId": "StartDate.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "decf41962064ede79b213035f34862b3",
|
||||
"type": "experimental_start_date",
|
||||
"entityRuleId": "DOC.3.0",
|
||||
"page": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Experimental_Completion_Date",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "04/04/2012",
|
||||
"originalValue": "04/04/2012",
|
||||
"valueDescription": "Convert values of type 'experimental_end_date' to dd/MM/yyyy joined with ', '",
|
||||
"componentRuleId": "CompletionDate.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "346a5ce1bd59081c74885078af715284",
|
||||
"type": "experimental_end_date",
|
||||
"entityRuleId": "DOC.4.0",
|
||||
"page": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Certificate_of_Analysis_Batch_Identification",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "SMU1LP001",
|
||||
"originalValue": "SMU1LP001",
|
||||
"valueDescription": "Joining all unique values of type batch_number with ', '",
|
||||
"componentRuleId": "AnalysisCertificate.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "93b7180cb815e41a53a3f1340776dcf2",
|
||||
"type": "batch_number",
|
||||
"entityRuleId": "DOC.9.1",
|
||||
"page": 12
|
||||
},
|
||||
{
|
||||
"id": "e0cb8bec3a8568335eae3d8776237c8f",
|
||||
"type": "batch_number",
|
||||
"entityRuleId": "DOC.9.0",
|
||||
"page": 23
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Species",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "rats",
|
||||
"originalValue": "rats",
|
||||
"valueDescription": "First found value of type species or else ''",
|
||||
"componentRuleId": "Species.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "b897fbedc847ea1d23f349e5350bc8f1",
|
||||
"type": "species",
|
||||
"entityRuleId": "DOC.5.2",
|
||||
"page": 14
|
||||
},
|
||||
{
|
||||
"id": "f5d80ce83f739506f95420a375c8effa",
|
||||
"type": "species",
|
||||
"entityRuleId": "DOC.5.2",
|
||||
"page": 14
|
||||
},
|
||||
{
|
||||
"id": "4f8b024892a7ee7826a7638833ed0de2",
|
||||
"type": "species",
|
||||
"entityRuleId": "DOC.5.2",
|
||||
"page": 14
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Strain",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "CRL:(WI)",
|
||||
"originalValue": "CRL:(WI)",
|
||||
"valueDescription": "First found value of type strain or else ''",
|
||||
"componentRuleId": "Strain.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "b9784d1fa897ade518e807b3e371b275",
|
||||
"type": "strain",
|
||||
"entityRuleId": "DOC.5.3",
|
||||
"page": 14
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Doses_mg_per_kg_bw",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours. Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14). 14",
|
||||
"originalValue": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours. Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14). 14",
|
||||
"valueDescription": "Joining all values of type doses_(mg_kg_bw) with ' '",
|
||||
"componentRuleId": "Necropsy.1.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "c1bf6261c8dc8f8f6aa0d6fe5c6553bd",
|
||||
"type": "doses_(mg_kg_bw)",
|
||||
"entityRuleId": "DOC.35.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "ede065ea1725687b77490a484aa2d9e8",
|
||||
"type": "doses_(mg_kg_bw)",
|
||||
"entityRuleId": "DOC.35.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "1210a0f7ffd1c0d558d330a09241bc7d",
|
||||
"type": "doses_(mg_kg_bw)",
|
||||
"entityRuleId": "DOC.35.0",
|
||||
"page": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Mortality_Statement",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "No mortality occurred on the study. 35",
|
||||
"originalValue": "No mortality occurred on the study. 35",
|
||||
"valueDescription": "Joining all values of type mortality_statement with ' '",
|
||||
"componentRuleId": "MortalityStatement.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "0ae4b2b53905f238cf17c20df26f209d",
|
||||
"type": "mortality_statement",
|
||||
"entityRuleId": "DOC.32.0",
|
||||
"page": 16
|
||||
},
|
||||
{
|
||||
"id": "849e9e6c36d5c510225587c21d66b18d",
|
||||
"type": "mortality_statement",
|
||||
"entityRuleId": "DOC.32.0",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Weight_Behavior_Changes",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "No mortality occurred during the study.\nNo adverse clinical signs were observed after treatment with the test item during the 14 day observation period. Erythema was noted in all animals (10/10) on Day 1 only. All animals were symptom free from 2 days after the treatment.\nThere were no treatment related effects on body weight or body weight gain during the observation period.\nThere was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.\n15",
|
||||
"originalValue": "No mortality occurred during the study.\nNo adverse clinical signs were observed after treatment with the test item during the 14 day observation period. Erythema was noted in all animals (10/10) on Day 1 only. All animals were symptom free from 2 days after the treatment.\nThere were no treatment related effects on body weight or body weight gain during the observation period.\nThere was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.\n15",
|
||||
"valueDescription": "Joining all values of type weight_behavior_changes with '\n'",
|
||||
"componentRuleId": "WeightBehavior.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "952c0822930bf5b8e2026f96cd7d9b37",
|
||||
"type": "weight_behavior_changes",
|
||||
"entityRuleId": "DOC.16.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "6ce01344b447329c1afa3f1f846173f0",
|
||||
"type": "weight_behavior_changes",
|
||||
"entityRuleId": "DOC.16.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "8ffd807ffd5ca21c759c78f54cd87f4f",
|
||||
"type": "weight_behavior_changes",
|
||||
"entityRuleId": "DOC.16.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "9eeb75725d19bc1f13330aa9cdaa3fdc",
|
||||
"type": "weight_behavior_changes",
|
||||
"entityRuleId": "DOC.16.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "a74be4f45046f442315f472490e39e59",
|
||||
"type": "weight_behavior_changes",
|
||||
"entityRuleId": "DOC.16.0",
|
||||
"page": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Necropsy_Findings",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "No treatment related macroscopic findings were observed. There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy. 39",
|
||||
"originalValue": "No treatment related macroscopic findings were observed. There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy. 39",
|
||||
"valueDescription": "Joining all values of type necropsy_findings with ' '",
|
||||
"componentRuleId": "Necropsy.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "c0c22ea4e6dda938468d4be3102334ae",
|
||||
"type": "necropsy_findings",
|
||||
"entityRuleId": "DOC.17.0",
|
||||
"page": 16
|
||||
},
|
||||
{
|
||||
"id": "799d19b6a371f575c77e988ba7e23063",
|
||||
"type": "necropsy_findings",
|
||||
"entityRuleId": "DOC.17.0",
|
||||
"page": 16
|
||||
},
|
||||
{
|
||||
"id": "24edc84baf21ef6bb37c5b20801d5e84",
|
||||
"type": "necropsy_findings",
|
||||
"entityRuleId": "DOC.17.0",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Deviation_from_the_Guideline",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "",
|
||||
"originalValue": "",
|
||||
"valueDescription": "Joining all values of type with '\n'",
|
||||
"componentRuleId": "GuidelineDeviation.0.0",
|
||||
"componentLogEntityReferences": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Conclusion_LD50_Greater_than",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "Greater than",
|
||||
"originalValue": "Greater than",
|
||||
"valueDescription": "Entity of type 'ld50_greater' found",
|
||||
"componentRuleId": "Conclusion.1.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "311a441f815daaffc20453a79712a684",
|
||||
"type": "ld50_greater",
|
||||
"entityRuleId": "DOC.10.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "107db9f46656e13234c90b9a3a57b694",
|
||||
"type": "ld50_greater",
|
||||
"entityRuleId": "DOC.10.0",
|
||||
"page": 11
|
||||
},
|
||||
{
|
||||
"id": "2c788c7a7118ef9bb18edf7d5e7dbc7b",
|
||||
"type": "ld50_greater",
|
||||
"entityRuleId": "DOC.10.0",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Conclusion_LD50_mg_per_kg",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "2000",
|
||||
"originalValue": "2000",
|
||||
"valueDescription": "Joining all unique values of type ld50_value with ', '",
|
||||
"componentRuleId": "Conclusion.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "fff9617f8d11bd678e1d17ee330d0eef",
|
||||
"type": "ld50_value",
|
||||
"entityRuleId": "DOC.10.0",
|
||||
"page": 10
|
||||
},
|
||||
{
|
||||
"id": "2ef271bd35871a6266f456a7c4360042",
|
||||
"type": "ld50_value",
|
||||
"entityRuleId": "DOC.10.0",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Conclusion_Minimum_Confidence",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "",
|
||||
"originalValue": "",
|
||||
"valueDescription": "Joining all unique values of type with ', '",
|
||||
"componentRuleId": "Conclusion.2.0",
|
||||
"componentLogEntityReferences": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Conclusion_Maximum_Confidence",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "",
|
||||
"originalValue": "",
|
||||
"valueDescription": "Joining all unique values of type with ', '",
|
||||
"componentRuleId": "Conclusion.3.0",
|
||||
"componentLogEntityReferences": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Study_Conclusion",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.",
|
||||
"originalValue": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.",
|
||||
"valueDescription": "Joining all values of type study_conclusion with ' '",
|
||||
"componentRuleId": "StudyConclusion.0.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "2fd7f1df547bbea6932344ded3d0a7bb",
|
||||
"type": "study_conclusion",
|
||||
"entityRuleId": "DOC.15.0",
|
||||
"page": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "laboratory_country",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "Hungary",
|
||||
"originalValue": "Hungary",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "d469a79eedff7c52b006ae34b36a7ff8",
|
||||
"type": "laboratory_country",
|
||||
"entityRuleId": "DOC.7.2",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "Hungary",
|
||||
"originalValue": "Hungary",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "9593a204d3530a8bb90cab1921cf57c1",
|
||||
"type": "laboratory_country",
|
||||
"entityRuleId": "DOC.7.2",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "United Kingdom",
|
||||
"originalValue": "United Kingdom",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "1b968e9b5ce3e90e4158c5353facb78f",
|
||||
"type": "laboratory_country",
|
||||
"entityRuleId": "DOC.7.1",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "oecd_guideline",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "OECD 402 (1987)",
|
||||
"originalValue": "OECD 402 (1987)",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "0adce062717031fcb3130cb4b5121220",
|
||||
"type": "oecd_guideline",
|
||||
"entityRuleId": "DOC.1.0",
|
||||
"page": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "study_conclusion",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.",
|
||||
"originalValue": "The median lethal dose of SYN545192 EC (A15457H) after a single dermal administration was found to be greater than 2000 mg/kg bw in male and female CRL:(WI) rats.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "f55749c2ff48055d2c2fa7dd08adde62",
|
||||
"type": "study_conclusion",
|
||||
"entityRuleId": "DOC.15.0",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "study_design",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours.",
|
||||
"originalValue": "A single administration of SYN545192 EC (A15457H) at a dose of 2000 mg/kg body weight was applied dermally to 5 male and 5 female CRL:(WI) rats, followed by a 14-day observation period. The test item was applied as supplied by the Sponsor. The application period was 24 hours.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "5da351be47fa414cfb7f833d3ca87f5e",
|
||||
"type": "study_design",
|
||||
"entityRuleId": "DOC.20.0",
|
||||
"page": 10
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14).",
|
||||
"originalValue": "Clinical observations were assessed in all animals at 1 and 5 hours after dosing and daily for 14 days thereafter. Body weight was measured prior to dosing on Day 0 and on Days 7 and 14. All animals were euthanized and subjected to a gross macroscopic examination at the end of the 14-day observation period (Day 14).",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "a7c111ff4a0456cb14456e27df5b155b",
|
||||
"type": "study_design",
|
||||
"entityRuleId": "DOC.20.0",
|
||||
"page": 10
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "14",
|
||||
"originalValue": "14",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "aee5552913b8d2b1fb3a57c84d82649b",
|
||||
"type": "study_design",
|
||||
"entityRuleId": "DOC.20.0",
|
||||
"page": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "test_results",
|
||||
"componentValues": [
|
||||
{
|
||||
"value": "Study Title: SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats",
|
||||
"originalValue": "Study Title: SYN545192 EC (A15457H) - Acute Dermal Toxicity Study in Rats",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "15c7b4591b08cb8b9eae17b1e048ed62",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "Test Item: SYN545192 EC (A15457H)",
|
||||
"originalValue": "Test Item: SYN545192 EC (A15457H)",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "bd2f28162667f5307980dcbefceb7b55",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "This study has been inspected, and this report audited by the Quality Assurance Unit in compliance with the Principles of Good Laboratory Practice. As far as it can be reasonably established the methods described and the results incorporated in this report accurately reflect the raw data produced during this study.",
|
||||
"originalValue": "This study has been inspected, and this report audited by the Quality Assurance Unit in compliance with the Principles of Good Laboratory Practice. As far as it can be reasonably established the methods described and the results incorporated in this report accurately reflect the raw data produced during this study.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "8dd6465f6585320429690c8dfec02013",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "All inspections, data reviews and the report audit were reported in written form to the study director and to management. The dates of such inspections and of the report audit are given below:",
|
||||
"originalValue": "All inspections, data reviews and the report audit were reported in written form to the study director and to management. The dates of such inspections and of the report audit are given below:",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "142b22eb9e0c50104a33a939a1a7b3cf",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "4.2",
|
||||
"originalValue": "4.2",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "4280bb81c5a58bedf7f2578ffbac9482",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 5
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "No mortality occurred on the study.",
|
||||
"originalValue": "No mortality occurred on the study.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "ac4cf632670c1e6b9f29a36a2f3a1545",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "35",
|
||||
"originalValue": "35",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "7ef3c9a644f708038fd627ce289b6fec",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "There were no adverse clinical signs noted in any animals throughout the study.",
|
||||
"originalValue": "There were no adverse clinical signs noted in any animals throughout the study.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "c6988066e4ea1b9fca609f2d04bc68ee",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "36",
|
||||
"originalValue": "36",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "41e6e61eb69d675d15ad0510a58e5ac8",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "Erythema was noted in all animals (10/10) on Day 1. All animals were symptom free from 2 days after the treatment.",
|
||||
"originalValue": "Erythema was noted in all animals (10/10) on Day 1. All animals were symptom free from 2 days after the treatment.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "29fa49dda60b8e8a243e2f46a9a9b66a",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "37",
|
||||
"originalValue": "37",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "a49264ce0b7d01cb9e5ac6c439fc21b9",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "There were no effects on either body weight or body weight gain in any animal.",
|
||||
"originalValue": "There were no effects on either body weight or body weight gain in any animal.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "89500fb07a64791681bc4e93edf5f950",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "38",
|
||||
"originalValue": "38",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "f0cd5807ab584affe57e44d8744256ef",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "No treatment related macroscopic findings were observed.",
|
||||
"originalValue": "No treatment related macroscopic findings were observed.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "aee6af989b1c6da3cc371929fe92b707",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.",
|
||||
"originalValue": "There was no evidence of the test item-related observations at a dose level of 2000 mg/kg bw at necropsy.",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "971796cd69839b6715ef11dadff12960",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"value": "39",
|
||||
"originalValue": "39",
|
||||
"valueDescription": "Unmapped Entity",
|
||||
"componentRuleId": "DefaultComponents.999.0",
|
||||
"componentLogEntityReferences": [
|
||||
{
|
||||
"id": "a3957a14b4e31bcfe42ba11e85cce322",
|
||||
"type": "test_results",
|
||||
"entityRuleId": "DOC.24.1",
|
||||
"page": 16
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 626 KiB |
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user